直接创建本地分支git branch 分支名,可能报错
fatal: Not a valid object name: ‘master‘.
解决方法:
$ git add .
$ ls
$ git commit -m "your comment"
$ git branch 分支名
$ git checkout 分支名 //切换分支
上传分支:
$ git remote add origin 推送地址
$ git push origin 分支名
直接创建本地分支git branch 分支名,可能报错
fatal: Not a valid object name: ‘master‘.
解决方法:
$ git add .
$ ls
$ git commit -m "your comment"
$ git branch 分支名
$ git checkout 分支名 //切换分支
上传分支:
$ git remote add origin 推送地址
$ git push origin 分支名