当前位置:   article > 正文

gitbash使用

git bash能不能调用物理机的gpu

gitbash是什么

git bash是Windows下的命令行工具。
基于msys GNU环境,有git分布式版本控制工具。
主要用于git版本控制,上传下载项目代码。
GNU环境,就是说如果你喜欢linux/unix的环境,就可以选择使用git bash。
里面有你熟悉的linux工具,tar,grep,awk等,且可以安装编译环境gcc,make等。

参考:
msys:http://baike.baidu.com/view/371287.htm
mingw:http://baike.baidu.com/view/98554.htm
msysgit:http://code.google.com/p/msysgit/

gitbash常用命令

git init 初始化 git,只有初始化了以后才可以使用 git 相关命令。
git clone 获取远程项目,并下载到本地。远程库的地址在 GITHUB 项目中会有提供。
git status 查看本地修改与服务器的差异。
git add . 将这些差异文件添加,这样就可以提交了。
git commit –m “这里是注释” 提交更改到服务器。
git checkout master 更改到master库。
git pull 将服务器最新的更改获取到本地。
git merge local master 将本地的local合并到远程的master上。
git push origin master 正式提交到远程的master服务器上。
还有“git tag”,“git diff”,“git show”,“git log”,“git remote”等。

在git上开发项目

1.申请github账号,官网是https://github.com/,申请后可免费获得0.3G仓库用于存储代码。
2.本地安装客户端gitbash
3.配置ssh keys。

  1. #Step 1: Check for SSH keys
  2. cd ~/.ssh
  3. ls
  4. #Step 2: Generate a new SSH key
  5. ssh-keygen -t rsa -C "your_email@example.com"
  6. #Step 3: Add your SSH key to GitHub
  7. pbcopy < ~/.ssh/id_rsa.pub
  8. #Step 4: Test everything out
  9. ssh -T git@github.com
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

4.连接你的github

  1. git config --global user.name "your name"
  2. git config --global user.email "your_email@youremail.com"
  • 1
  • 2

5.进入要上传的仓库,右键git bash,添加远程地址

git remote add origin git@github.com:yourName/yourRepo.git
  • 1

6.提交,上传的文件如README.md

  1. git add README
  2. git add README$ git commit -m "first commit"
  • 1
  • 2

7上传到github

git push origin master
  • 1

转载于:https://www.cnblogs.com/yanghong-hnu/p/5635248.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/792881
推荐阅读
  

闽ICP备14008679号