首页 > 开发工具 > git > 正文

Git 相关使用命令总结

藏色散人
发布: 2020-03-21 15:08:59
转载
3338 人浏览过

68af4c55754df763e13ef0f204084b1.png

全局设置

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中文网其他相关文章!

相关标签:
git
来源:segmentfault.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!