git命令速查

2021-10-19 02:00:41 字數 482 閱讀 3090

git clone

如果你不設定可能還push不上去,第乙個要配置的是你個人的使用者名稱和電子郵件位址。這兩條配置很重要,每次 git 提交時都會引用這兩條資訊,說明是誰提交了更新,所以會隨更新內容一起被永久納入歷史記錄:

git pull 拉取遠端倉庫**直接合併

git branch -d new2 強制把沒有合併的分支刪掉

有衝突的合併(兩個分支不同)

git push origin new1 把new1分支提交到遠端倉庫上

git tag 檢視標籤

git tag v1.0 v1.0版

之後:git push origin v1.0 (這裡v1.0不是分支)

git reset head~ 撤銷回上一次提交的,和之前在暫存區裡提交前一樣的狀態

修改最近一次的commit 資訊

git commit --amend

git命令速查

apt get install gitbrew install gitgit config global user.name shaumik 使用者名稱 git config global user.email sdaityari gmail.com 郵箱 git config global col...

git命令速查

1.git已經刪除了遠端分支,本地仍然能看到 git branch a git remote show origin git remote prune origin 2.git出現 merging解決 git reset hard 分支名 3.git如何刪除遠端分支 git branch a git...

Git命令速查

建立乙個空的倉庫 git init把檔案新增到倉庫暫存區 git add file1 file2把檔案提交到倉庫 git commit m your description 檢視倉庫當前的狀態 git status檢視修改內容 git diff file git diff head file 檢視工...