Git Command
Rename a branch
git branch -m <oldname> <newname>
git branch -m <newname>
The -m
is for mv
or “move”.
List all the files modified by one user
$ git log --no-merges --author="Yang Chen" --name-only --pretty=format:"" | sort -u
git branch -m <oldname> <newname>
git branch -m <newname>
The -m
is for mv
or “move”.
$ git log --no-merges --author="Yang Chen" --name-only --pretty=format:"" | sort -u