git使用技巧

基本操作

  1. 初级
# 全局添加基本信息
$ git config --global user.email "[email protected]"
$ git config --global user.name "fizzday"
# 远程仓库:  
# 生成公钥和私钥
$ ssh-keygen -t rsa -C "[email protected]"
# 拉取远程 master 分支代码
$ git pull origin master
# 添加所有更改到缓存区
$ git add .
# 提交更改, -m 说明注释
$ git commit -m "这里是提交说明或注释"
# 推送更改到远程分支
$ git push origin master
  1. 进阶
# 分支
git checkout
# 重置
git reset
# 更改
git diff
# 更改状态
git status
  1. 升华
git tag
git branch

git更改源地址

由于使用https的git地址, 总是报错error: The requested URL returned error: 403 Forbidden while accessing https://github.com/fizzday/fizzday.git/info/refs, 我一怒之下, 直接换了 ssh 的连接, 结果就好了, 具体操作如下

$ git remote rm origin
$ git remote add origin "[email protected]:fizzday/fizzday.git"

git标签的使用技巧

$ git tag -a v0.1 -m “composer init″
# -a后边的 v0.1 是标签, -m 后边的是说明

注意: 添加标签要在我们 commit 之后,如:

git add .
git commit -m “fixed some bugs”
git tag -a 0.1.3 -m “Release version 0.1.3″

推送到远程仓库:

$ git push origin master
$ git push origin --tags
# –tags参数表示提交所有tag至服务器端,普通的git push origin master操作不会推送标签到服务器端。

删除标签的命令

git tag -d v0.1

删除远端服务器的标签

git push origin :refs/tags/v0.1

参考地址: http://www.cnblogs.com/tugenhua0707/p/4050072.html

你可能感兴趣的:(git使用技巧)