将本地项目文件夹推送到远端git仓库并同时创建新分支
当前状态:
我们有一个远程仓库和一个本地项目仓库,本地仓库没有配置 git。 现在想将本地仓库中的部分文件作为一个新的分支推送到远端仓库。
Procedures:
- Set up ".gitignore" file.
- "git init" in local repo.
- git checkout -b <new-branch>
- git add .
-
git config --global user.email "you@example.com" (use --local if you only want this takes effect on this particular repo)
git config --global user.name "Your Name" - git commit -m "commit-msg"
- git remote add <remote-name> <remote-url> (usually the remote-name is set to 'origin')
- git push -u <remote-name> <new-branch>