git 仓库初始化

创建本地仓库

$ mkdir test
$ cd test
$ git init 
$ touch README.md
$ git add README.md
$ git commit -m "first commit"

http push 方式

$ git remote add origin http://XXXX.com/XXX/test.git
$ git push -u origin "master"

ssh push 方式

  1. ssh rsa 秘钥生成
  2. 配置公钥
  3. 推送
$ git remote add origin [email protected]/XXX/test.git
$ git push -u origin "master"

你可能感兴趣的:(git 仓库初始化)