博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git使用- 基本命令
阅读量:5093 次
发布时间:2019-06-13

本文共 771 字,大约阅读时间需要 2 分钟。

$ git config --global user.name "Your Name"   全局 name 设置

$ git config --global user.email "email@example.com"  全局 email 设置

$ pwd 查看当前路径

$ git init 初始化仓库

$ git add readme.txt 添加一个文件

$ git add .  添加所有文件

$ git commit -m "wrote a readme file" 提交改变至版本库

$ ssh-keygen -t rsa -C "youremail@example.com"  创建秘钥

$ git remote add origin git@github.com:michaelliao/learngit.git  将本地仓库与远程仓库关联

$ git push origin <local_branch_name>:<remote_branch_name> 推送本地库至远程仓库

$ git fetch -p 删除远程分支后,本地同步

$ git checkout -b local-branchname origin/remote_branchname

$git remote [-v] 查看当前配置有哪些远程仓库[别名实际链接地址]

$git commit -m "备注" 提交并进行备注

$git push -u origin A:B ,这样可以推到远程 B 分支上,同时设置为当前分支 A 的上游分支

 $git branch --set-upstream-to=origin/master master 关联本地分支与远程分支

转载于:https://www.cnblogs.com/baokang/p/4982654.html

你可能感兴趣的文章
Linux常用命令
查看>>
ubuntu 下LAMP服务器环境搭建
查看>>
centos7 安装SVN
查看>>
【ZH奶酪】如何用sklearn计算中文文本TF-IDF?
查看>>
USACO Shaping Regions,难题,离散化,矩形切割,逆序染色
查看>>
iis 还原配置
查看>>
设计模式——门面模式
查看>>
自己动手打造工具系列之自动刷新简历
查看>>
Sqlserver2005附加数据库为只读的解决方法
查看>>
[BZOJ 1296] 粉刷匠
查看>>
C#将文档(Word\ Excel\ PowerPoint\ Visio\ text\ XML\ RTF\ CSV )转成Pdf
查看>>
redis报错
查看>>
重载delete时的那点事
查看>>
页面请求后台方法,报错Session error
查看>>
详解三层架构图
查看>>
OpenCV - Android Studio 2.2 中利用CAMKE进行OpenCV的NDK开发
查看>>
Frameworks.Entity.Core 4
查看>>
JavaEE--调用 WSDL -- httpclient 4.x.x
查看>>
Digital Communication and signal processing (30059)
查看>>
Oracle Block scn/commit scn/cleanout scn 说明
查看>>