35 lines
742 B
Markdown
Executable File
35 lines
742 B
Markdown
Executable File
# 如何迁移git项目
|
|
|
|
|
|
- git remote set-url origin ************(项目地址)
|
|
- git push
|
|
|
|
|
|
```bash
|
|
#Git global setup
|
|
git config --global user.name "light"
|
|
git config --global user.email "1870499383@qq.com"
|
|
|
|
#Create a new repository
|
|
git clone git@git.vueadmin.com:light/test.git
|
|
cd test
|
|
touch README.md
|
|
git add README.md
|
|
git commit -m "add README"
|
|
git push -u origin master
|
|
|
|
#Existing folder
|
|
cd existing_folder
|
|
git init
|
|
git remote add origin git@git.vueadmin.com:light/test.git
|
|
git add .
|
|
git commit -m "Initial commit"
|
|
git push -u origin master
|
|
|
|
#Existing Git repository
|
|
cd existing_repo
|
|
git remote rename origin old-origin
|
|
git remote add origin git@git.vueadmin.com:light/test.git
|
|
git push -u origin --all
|
|
git push -u origin --tags
|
|
``` |