git查自己写了多少代码
git log --author="your name" --pretty=tformat: --numstat | grep ".java" | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -
把已经存在的项目上传到github步骤如下:
在github上新建一个空的项目,不需要ignore和readme文件
cd进入本地项目,执行以下步骤就可以把项目上传到github上啦
* git init
* git add .
* git commit -m "first commit"
* git remote add origin git@github.com:Windsmild/MyCloud.git(项目地址)
* git push -u origin master
查看本地和远程关联分支
git branch -vv
git分支根据commit顺序排序
git branch --sort=-committerdate # DESC
git branch --sort=committerdate # ASC
网友评论