Dev-notes

git notes

#remove one or more commits, till to the commit xxxxxx.

git reset --hard xxxxxx

git push -f

 

#reset local branch:

git fetch; git reset --hard origin/the_branch_you_wanna_align

 

 

#squash merge, merge the changes in branch_a into branch_b within only one commit. It's better with a special comment.

git checkout branch_b

git merge --squash branch_a

git commit

git push

 

 

#pull a remote branch to local, which the branch already in local, but the remote branch has been changed a lot.

# but must noted that it will discard un-committed changes in local

git fetch

git reset --hard origin/branch_name

Maven command

# pom version update

    mvn versions:set -DnewVersion=3.0.2-SNAPSHOT

    #If we made a mistake, then

        mvn versions:revert

    #afterwards:

        mvn versions:commit

 

Splunk search script

# normal search

index=efx_fxopd_raw sourcetype=efx_fxopd_cps_volserver_debug

 

 

#case sensitive

index=efx_fxopd_raw sourcetype=efx_fxopd_cps_volserver_debug CASE(USD)

Windows7 command line script

# set jdk version temporary

 

set path=c:/jdk8;%path%

 

 

# persistent the settings:

# You could use setx.

# User variable:

SETX PATH "%PATH%;C:\MyDir"

 

# System variable:

setx PATH "%PATH%;C:\MyDir" /m

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值