Removed desktop screenshot from README
Also added git function to cherry-pick commits.
This commit is contained in:
@@ -1,13 +1,8 @@
|
|||||||
<!--- Intro {{{ -->
|
<!--- Intro {{{ -->
|
||||||
# Kevin's Linux Setup
|
# Kevin's Linux Setup
|
||||||
|
|
||||||
<!--- pictures {{{ -->
|
|
||||||

|
|
||||||
*Screenshot from my dual-monitor desktop config.*
|
|
||||||
|
|
||||||

|

|
||||||
*Screenshot from my laptop config.*
|
*Screenshot from my laptop config.*
|
||||||
<!--- }}} pictures -->
|
|
||||||
|
|
||||||
This repository contains the dotfiles for my Linux
|
This repository contains the dotfiles for my Linux
|
||||||
[rice](https://www.reddit.com/r/unixporn/comments/3iy3wd/stupid_question_what_is_ricing/cukxwog/) and also help to increase my workflow efficiency significantly.
|
[rice](https://www.reddit.com/r/unixporn/comments/3iy3wd/stupid_question_what_is_ricing/cukxwog/) and also help to increase my workflow efficiency significantly.
|
||||||
|
|||||||
@@ -251,12 +251,13 @@ alias crm="mrk README.md"
|
|||||||
function gcho() { git checkout $1 ; }
|
function gcho() { git checkout $1 ; }
|
||||||
function gcln() { git clone $1 ; }
|
function gcln() { git clone $1 ; }
|
||||||
|
|
||||||
function gremotes() {
|
# assume file is changed
|
||||||
git remote set-url --add --push origin $1
|
function gunc() { git update-index --assume-unchanged $1 ; }
|
||||||
git remote set-url --add --push origin $2
|
|
||||||
}
|
|
||||||
|
|
||||||
# gmrgr: merge repos {{{ #
|
# only take certain commit from branch
|
||||||
|
function gchp() { git cherry-pick $1 ; }
|
||||||
|
|
||||||
|
# merge repos {{{ #
|
||||||
function gmrgr() {
|
function gmrgr() {
|
||||||
# 1 = remote name, 2 = remote path
|
# 1 = remote name, 2 = remote path
|
||||||
git remote add $1 $2
|
git remote add $1 $2
|
||||||
@@ -267,7 +268,12 @@ function gmrgr() {
|
|||||||
}
|
}
|
||||||
# }}} merge repos #
|
# }}} merge repos #
|
||||||
|
|
||||||
function gunc() { git update-index --assume-unchanged $1 ; }
|
# add multiple remotes {{{ #
|
||||||
|
function gremotes() {
|
||||||
|
git remote set-url --add --push origin $1
|
||||||
|
git remote set-url --add --push origin $2
|
||||||
|
}
|
||||||
|
# }}} add multiple remotes #
|
||||||
|
|
||||||
# pull all {{{ #
|
# pull all {{{ #
|
||||||
function gpla() {
|
function gpla() {
|
||||||
|
|||||||
Reference in New Issue
Block a user