标签:repo username clone push 副本 code 创建 开发 sni
我们大多数时候都使用IDE和其他软件来编写命令,但为了更好的工作,我们还需要随时准备一些可以随手使用的命令,以备不时之需。以下是我在开发时候,通常使用的命令,今天,我将它分享与你,希望对你有所帮助。
git init
git clone ssh://git@github.com/[username]/[repository-name].git
git status
git add
git add -A
git commit -m "[commit message]"
git rm -r
git branch
git branch
git branch -d
git checkout -b
git checkout -b
git branch -m [old branch name] [new branch name]
git checkout [branch name]
git merge [branch name]
git merge [source branch] [target branch]
git stash
git stash clear
git push origin
git push
git pull
git pull origin
git remote add origin ssh://git@github.com/[username]/[repository-name].git
git log
git diff [source branch] [target branch]
标签:repo username clone push 副本 code 创建 开发 sni
原文地址:https://www.cnblogs.com/restart77/p/14721396.html