首頁  >  文章  >  開發工具  >  Git 相關使用指令總結

Git 相關使用指令總結

藏色散人
藏色散人轉載
2020-03-21 15:08:593334瀏覽

Git 相關使用指令總結

全域設定

git config --global user.name "zyl"
git config --global user.email xxx@xxx.com
git config --list 检查你的git设置
git clone xxxxxx.git

#新增新的檔案

vim demo.txt
git add demo.txt 添加新的文件
git commit -m 'this is first commit' 提交到本地仓库,并且设置注释
git push 将推送这一转变为主分支
git rm xxx.txt 删除文件
git commit -m 'xxxx'; 提交到仓库
git push
git pull 拉取文件
git log -all 日志
git branch 查看所有分支
git log --stat xxx 查看 某个支点的提交信息
find .git/objects -type f 查看所有分支

阿里雲相關命令:

命令列指令

Git 全域設定

git config --global user.name "z1577121881"
git config --global user.email "1577121881@qq.com"

建立新版本庫

git clone git@code.aliyun.com:z1577121881/tantou.git
cd tantou
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

已存在的資料夾或Git 倉庫

cd existing_folder
git init
git remote add origin git@code.aliyun.com:z1577121881/tantou.git
git add .
git commit -am "你需要填写的一些信息"
git push -u origin master

碼雲相關命令

設定全域資訊

git config --global user.name "你的名字"
git config --global user.email "你的Email"
clone 和push
git clone http://xxxx/xxxx.git

建立特徵分支

git checkout -b $feature_name

提交代碼

git commit -am "this is commit "

推送到指定分支

git push origin $feature_name

為了方便,最好添加公鑰到git.

可以透過下面命令產生

ssh-keygen -t rsa -C "xxxxx@xxxxx.com"# Creates a new ssh key using the provided email
# Generating public/private rsa key pair...

查看public key

cat ~/.ssh/id_rsa.pub
# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....

新增後,在終端機(Terminal)中輸入

ssh -T git@git.oschina.net

若返回Welcome to Git@OSC, yourname!

本文來自 git教學 專欄,歡迎學習!

以上是Git 相關使用指令總結的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除