Git Init

对于首次上传项目到github或企业gitlab

1
2
3
4
5
6
7
8
9
10
11
12
13
新建project

cd ~/project

git init

git add .

git commit -m "***"

git remote ... // 与远程仓库建立连接

git push -u origin master