使用git做版本控制

来源:互联网 发布:数据分析的统计基础 编辑:程序博客网 时间:2024/04/24 21:17
$ git config --global user.name "Your Name"$ git config --global user.email your.email@example.com初始化一个新仓库:$ git init$ git add -A$ git status$ git commit -m "Initialize repository"$ git log$ git checkout master$ git merge "branch_name"
0 0
原创粉丝点击