codershenghai / shenghaishxt.github.io

My Blog
1 stars 0 forks source link

Git命令使用纪录 | shenghai's blog | shxt #139

Open codershenghai opened 5 years ago

codershenghai commented 5 years ago

http://www.zhangshenghai.com/posts/3860/

123456789101112# 首先将远程库与本地库关联:git remote add LeetCode git@github.com:shenghaishxt/LeetCode.git# 本地添加修改的文件git add somethinggit add .# 本地提交修改git commit -m "add something"# push到远程仓库git push -u