Git相關使用命令有哪些-創(chuàng)新互聯(lián)

小編給大家分享一下Git相關使用命令有哪些,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

創(chuàng)新互聯(lián)建站堅持“要么做到,要么別承諾”的工作理念,服務領域包括:網(wǎng)站設計、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務,滿足客戶于互聯(lián)網(wǎng)時代的建德網(wǎng)站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡建設合作伙伴!

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 將推送這一轉(zhuǎn)變?yōu)橹鞣种?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"

創(chuàng)建新版本庫

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

創(chuàng)建特征分支

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相關使用命令有哪些”有了一定的了解,如果想了解更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!

網(wǎng)站欄目:Git相關使用命令有哪些-創(chuàng)新互聯(lián)
網(wǎng)頁路徑:http://muchs.cn/article22/ddpecc.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供動態(tài)網(wǎng)站、外貿(mào)網(wǎng)站建設、云服務器、網(wǎng)站制作、標簽優(yōu)化企業(yè)網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應式網(wǎng)站建設