📌  相关文章
📜  如何在终端上设置 git repo - Shell-Bash 代码示例

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

代码示例1
# New local repository
git init
git add .
git commit -m "Initial commit"

# New remote repository
# Create remote repository (likely on github), then:
git remote add origin https://github.com/username/new_repo #https
git remote add origin git@github.com:username/new_repo #ssh
# Now push
git push -u origin master