GIT使用

远程仓库初始化

切换到仓库中的项目目录下, git --bare init


修改仓库权限

chmod -R 'g+rwx'  path_name


MAC下生成密钥 

 切换到~/.ssh , 输入 ssh-keygen -t rsa -C "email_address"     

加入密钥后,要重启才生效。


 初始化

git init 


设置远程仓库地址

git remote add remote_repos_name  git://android.git.kernel.org/kernel/common.git


获取远程仓库代码 

git fetch remote_repos_name


查看所有分支 

git branch -a 


忽略文件

目录下生成.gitignore文件


加载子模块 

git submodule init

git submodule status

git submodule update 


查看远程仓库地址

git remote -v  


git标签 

显示所有git标签:   git tag

添加git标签:       git tag -a v1.4 -m 'release version 1.4'

查看某标签版本信息    git show v1.4

默认不会把标签从本地push到远程仓库,需要  git push origin tag_name

推送所有的本地新增标签到远程仓库     git push origin --tags


搜索项目中关键字

git grep search_key_word 


跨平台中文编码问题









你可能感兴趣的:(GIT使用)