1、基本操作指導:
新增使用者:
sudo useradd -s /bin/bash -m -b /home
配置分組:
sudo usermod -a -g adm,cdrom,sudo, dip,plugdev,sambashare,lpadmin
設定密碼
sudo passwd
2、生成公鑰:
ssh-keygen -t rsa ---> enter ---> enter ---> enter
3、測試公鑰是否生效:
ssh -p 29418 [hostname]
如:ssh -p 29418 10.1.11.34
git config --global user.name "***xx"
git config --global user.mail "***[email protected]"
5、檢視自己有許可權的projects
ssh -p 29418 [hostname] gerrit ls-projects
6、轉殖有許可權的**庫:
git clone ssh://[hostname]:29418/qcxx/****.git
7、拷貝鉤子指令碼到本地:
scp -p 29418 -p [hostname]:/hooks/comit-msg .git/hooks/
8、建立個人分支:
git checkout -b [個人分支]
9、檢視遠端版本庫名:
git remote -v
10、檢視所有分支:
git branch -a
11、push到debug分支驗證:
git push origin head:***_debug_dev
12、push到主線的gerrit分支
git push origin head:refs/for/xx_int
13、更新本地版本庫
get fetch origin(git remote update)
或者git pull
14、回退操作
git reset --hard commit-id
git reset --soft commit-id
15、檢視某個提交**
git shwo commit-id
某次提交的整個過程的命令:
提交到debug流:
git branch -a
git status
git add .
git status
git commit -m -s "anddb0106230:andrew_add ***x code"
git push origin head:***_dev
驗證ok後,可以上傳到int流
git branch -a
git remote update
git log --oneline -5
git checkout -b br-***-int remote/origin/***_int
git cherry-pick f2915d0
git push origin head:refs/for/***_int
常用命令 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...