Git常用

初始化 # 以当前目录为项目创建仓库 git init # 创建一个目录作为项目仓库 git init [name] 提交至暂存区 git add [file] git commit -m [msg] 分支 # 创建分支 git branch [name] # 查看分支,-r:远程分支,-a:所有分支 git branch 参数 # 切换分支 git checkout 分支名 # 删除本地分支 git branch -d [BranchName] # 删除远程分支 git push origin --delete [BranchName] 同步 # 添加远程仓库 git remote add [仓库] [仓库url] # 同步 git push [仓库] [分支] # 同步到本地 git pull [仓库] [分支] 其他 加上--global表示全局,不加就仅针对当前项目...

March 2, 2022 · 2 min · 编程笔记本

安装Termux后要做的

键盘方案 extra-keys = [ \ ['ESC','|','/','F5','[','UP',']','`','{','<'], \ ['TAB','CTRL','=','ALT','LEFT','DOWN','RIGHT','PGDN','}','>'] \ ] zsh sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 国内源 sed -i 's@^\(deb.*stable main\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/termux-packages-24 stable main@' $PREFIX/etc/apt/sources.list sed -i 's@^\(deb.*games stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/game-packages-24 games stable@' $PREFIX/etc/apt/sources.list.d/game.list sed -i 's@^\(deb.*science stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/science-packages-24 science stable@' $PREFIX/etc/apt/sources.list.d/science.list apt update && apt upgrade 安装虚拟机 # ubuntu pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Ubuntu/ubuntu.sh && bash ubuntu.sh # kali Linux pkg install wget openssl-tool proot -y && hash -r && wget https://raw....

March 2, 2022 · 1 min · 编程笔记本