git常用命令集錦

2021-08-29 04:48:33 字數 796 閱讀 5442

列出所有本地分支$: git branch

列出所有遠端分支$: git branch -r

列出所有本地和遠端分支$: git branch -a

新建分支,依然停留在當前分支$: git branch [branch -name]

新建乙個分支,並切換到該分支$: git checkout -b [branch]

新建乙個分支,指向指定commit$: git branch [branch] [commit]

新建乙個分支,與指定的遠端分支建立追蹤關係$: git branch --track [branch] [remote -branch]

切換到指定分支,並更新工作區: git checkout [branch -name]

建立追蹤關係,在現有分支與指定的遠端分支之間$: git branch --set upstream [branch] [remote - branch]

合併指定分支到當前分支$: git merge [branch]

選擇乙個commit,合併進當前分支$: git cherry-pick [commit]

刪除分支$: git branch -d [branch -name]

刪除遠端分支$: git push origin --delete [branch -name]

git branch -dr [remote/branch]

**回退至某個提交點,即**回滾到某個提交點,不存在提交記錄$: git reset --hard [commit]

撤回某次提交記錄$: git revert [commit]

git 常用命令集錦

檢視 新增 提交 刪除 找回,重置修改檔案 git help 顯示command的help git show 顯示某次提交的內容 git show id git co 拋棄工作區修改 git co 拋棄工作區修改 git add 將工作檔案修改提交到本地暫存區 git add 將所有修改過的工作檔案...

AIX常用命令集錦

1 telnet ip 連線到小型機 2 login team08 password 登陸 3 passwd 更改口令 4 logout 退出 直接退出系統 5 exit 退出 ctrl d 退出當前的shell 6 date 列出當前日期時間 加引數改變輸出格式 7 cal 察看年月日資訊 8 c...

AIX常用命令集錦

命令 1 telnet ip 連線到小型機 2 login team08 password 登陸 3 passwd 更改口令 4 logout 退出 直接退出系統 5 exit 退出 ctrl d 退出當前的shell 6 date 列出當前日期時間 加引數改變輸出格式 7 cal 察看年月日資訊 ...