Skip to content

Instantly share code, notes, and snippets.

View lxygithub's full-sized avatar
🎯
Focusing

lxy lxygithub

🎯
Focusing
View GitHub Profile
@guweigang
guweigang / git_toturial
Last active April 29, 2024 05:56
git命令大全
git init # 初始化本地git仓库(创建新仓库)
git config --global user.name "xxx" # 配置用户名
git config --global user.email "xxx@xxx.com" # 配置邮件
git config --global color.ui true # git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto
git config --global --unset http.proxy # remove proxy configuration on git
git clone git+ssh://git@192.168.53.168/VT.git # clone远程仓库
@spikeheap
spikeheap / sonar-runner.properties
Last active January 4, 2019 04:50
# A sample sonar-runner.properties file to test Groovy and Javascript in a Grails project # Note that the blank projectBaseDir properties are necessary otherwise Sonar infers # the directory name from the module name, which doesn't apply here.
# A sample sonar-runner.properties file to test Groovy and Javascript in a Grails project
# Note that the blank projectBaseDir properties are necessary otherwise Sonar infers
# the directory name from the module name, which doesn't apply here.
#
# Author: Ryan Brooks (ryan.brooks@ndm.ox.ac.uk)
# required metadata
sonar.projectKey=com.example
sonar.projectName=My Project
sonar.projectVersion=0.1