📌  相关文章
📜  在命令行上创建一个新的存储库 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:34.855000             🧑  作者: Mango

代码示例7
# create a new repository on the command line

echo "# README" >> README.md
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:AnassAzeroual/bash-basic-scripts.git
git push -u origin main