拉取**:
git pull
推本地**上去:
1、git status
2、git add [filename1] [filename2]
3、git commit [filename1] -m 「提交資訊說明」
4、git push
回退 1、退回至快取區的coding回退
git reset [filename1]
2、會退到制定版本
git reset –hard 版本號(版本號為commit後的)
看提交日誌:
git log
git log –oneline
分支 1、檢視分支
git branch
2、建立分支
git branch 分支名
3、切花分支
git checkout 分支名
git checkout -b 分支名(建立並切換分支)
4、合併某分支到當前分支
git merge 分支名
5、刪除分支
git branch -d 分支名(強行刪除 -d)
git commit -m "[t]-[n/a]-add request method code"
git submodule init
git submodule update
然後cd cmbcar-b-contracts
然後git checkout master 將contractcheck到master
git stash
git stash pop
git push --no-verify (本地跑完,不用test)
git add . 提交所有
改完之後
git stash
git pull --rebase
git stash pop
git add .
git commit -m "[t]-[n/a]-add request method code"
git push
1. 新建分支 ***
2. git pull (目錄下 命令行將線上分支拉倒本地)
3. git checkout *** (切換到到該分支 )
(可使用 git status 檢視目前處於哪乙個分支)
4. 然後 coding...
5. git add . (有個英文狀態的句號!!!)
6.git commit -m 'qw4awe' (提交,-m ''提示資訊)
7. git push
8. git checkout master (回到主分支)
9. git merge *** (將該分支合併到主分支上)
10. git push
常用命令 Git 常用命令大全
安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...
git 常用命令
檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...
git常用命令
詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...