Git
丿Smile灬晨星
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git脚本
1、同步多个项目文件夹#!/bin/bashcurPath=$(cd "$(dirname "$0")"; pwd)for i in {test,test_ios,test_android}do cd ${curPath}/$i echo "" echo -e "\e[1;31mgit pull $(cd "$(dirname "$0")"; pw原创 2017-05-10 10:55:46 · 513 阅读 · 0 评论 -
Git学习笔记
安装Git $ gitThe program 'git' is currently not installed.You can install it by typing:sudo apt-get install git$ git config --global user.name "YourName"$ git config --global user.email"email@原创 2017-05-10 10:56:52 · 443 阅读 · 0 评论 -
Windows下Git Bash中文乱码
文章转自:http://ideabean.iteye.com/blog/2007367打开Git Bash 进入目录:$ cd /etc 1. 编辑 gitconfig 文件:$ vi gitconfig 文件中增加内容[gui] encoding = utf-8 #代码库统一使用utf-8 [i18n] commitencodi转载 2017-05-10 10:50:09 · 542 阅读 · 0 评论
分享