1 Git global setup
 2 
 3 git config --global user.name "luozeng"
 4 git config --global user.email "354020912@qq.com"
 5 
 6 Create a new repository
 7 
 8 git clone https://gitlab.com/luozeng/blog.git
 9 cd blog
10 touch README.md
11 git add README.md
12 git commit -m "add README"
13 git push -u origin master
14 
15 Existing folder
16 
17 cd existing_folder
18 git init
19 git remote add origin https://gitlab.com/luozeng/blog.git
20 git add .
21 git commit -m "Initial commit"
22 git push -u origin master
23 
24 Existing Git repository
25 
26 cd existing_repo
27 git remote rename origin old-origin
28 git remote add origin https://gitlab.com/luozeng/blog.git
29 git push -u origin --all
30 git push -u origin --tags

 

相关文章:

  • 2022-03-01
  • 2021-12-22
  • 2022-02-07
  • 2021-08-05
  • 2022-02-09
  • 2022-12-23
  • 2022-02-07
猜你喜欢
  • 2022-12-23
  • 2021-12-20
  • 2022-12-23
  • 2021-08-28
  • 2021-08-03
  • 2021-12-24
  • 2021-05-15
相关资源
相似解决方案