📌  相关文章
📜  从本地机器创建一个 git 存储库并在线推送 - Shell-Bash 代码示例

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

代码示例1
#initialize 
git init 
# add your URL , it can be local or remote one 
git remote add origin 
# commit something
git add *
git commit -m "your message"
# push to your repository 
git push origin master
# you can then go and check online