git版本控制器

进行环境配置,需要在官网下载git,,node,,ruby,,sass,,grunt,,PHP

链接:https://pan.baidu.com/s/1QAJdd6QOcu0PR5y7F8ID3w 密码:5oql

具体安装根据官网说明进行安装,

其中sass是css的预处理;grunt是构建工具,PHP是服务器语言,git是仓库管理;

git 官网 https://gitscm.com/downloads

node官网: http://nodejs.cn/
ruby官网:https://rubyinstaller.org/

git常用命令

git生成公钥私钥命令:

  cd ~/.ssh (查找电脑上之前有没有生成)  没有的话    创建一个文件  mkdir ~/.ssh

  ssh-keygen -t rsa -C '邮箱号'

    ##生成的公钥在‘~/.ssh/id_rsa.pub’中

全局配置:(用户信息)

git config --global user.name '用户名'

git config --global user.meail '邮箱号'

常用命令:

git clone git://github.com/smalot/bootstrap-datetimepicker.git 该隆项目

git init 初始化仓库

git status 查看当前分支状态

git add .

git commit -m "ddd" 提交

git pull  下拉仓库内容

git push 更新

grunt work:b-activity 监听b-activity项目事件

git publish:项目文件夹 推到远程仓库

git branch branchName 创建分支

git checkout branchName 切换分支

git checkout -b branchName  合并子分支到项目分支


npm run dev 在本地浏览器打开

Linux系统常用命令

cd e 进入到一个文件夹

mkdir <项目名> 创建一个文件夹或者文件

cat index.html 显示index的内容

文件和目录

cd /home 进入 '/ home' 目录'
cd .. 返回上一级目录
cd ../.. 返回上两级目录
cd 进入个人的主目录
cd ~user1 进入个人的主目录
cd - 返回上次所在的目录
pwd 显示工作路径
ls 查看目录中的文件
ls -F 查看目录中的文件
ls -l 显示文件和目录的详细资料
ls -a 显示隐藏文件
ls *[0-9]* 显示包含数字的文件名和目录名
tree 显示文件和目录由根目录开始的树形结构(1)
lstree 显示文件和目录由根目录开始的树形结构(2)
mkdir dir1 创建一个叫做 'dir1' 的目录'
mkdir dir1 dir2 同时创建两个目录
mkdir -p /tmp/dir1/dir2 创建一个目录树
rm -f file1 删除一个叫做 'file1' 的文件'
rmdir dir1 删除一个叫做 'dir1' 的目录'
rm -rf dir1 删除一个叫做 'dir1' 的目录并同时删除其内容
rm -rf dir1 dir2 同时删除两个目录及它们的内容
mv dir1 new_dir 重命名/移动 一个目录
cp file1 file2 复制一个文件
cp dir/* . 复制一个目录下的所有文件到当前工作目录
cp -a /tmp/dir1 . 复制一个目录到当前工作目录
cp -a dir1 dir2 复制一个目录
ln -s file1 lnk1 创建一个指向文件或目录的软链接
ln file1 lnk1 创建一个指向文件或目录的物理链接
touch -t 0712250000 file1 修改一个文件或目录的时间戳 - (YYMMDDhhmm)
file file1 outputs the mime type of the file as text
iconv -l 列出已知的编码
iconv -f fromEncoding -t toEncoding inputFile > outputFile creates a new from the given input file by assuming it is encoded in fromEncoding and converting it to toEncoding.
find . -maxdepth 1 -name *.jpg -print -exec convert "{}" -resize 80x60 "thumbs/{}" ; batch resize files in the current directory and send them to a thumbnails directory (requires convert from Imagemagick)

原文地址:https://www.cnblogs.com/lvxisha/p/9753026.html