Skip to content

Instantly share code, notes, and snippets.

View towens's full-sized avatar

T Owens towens

  • Nike
  • Portland
View GitHub Profile
@towens
towens / install_python27x.sh
Last active December 1, 2017 07:26 — forked from andriisoldatenko/install_python.sh
Install local Python 2.7.10 on CentOS 7
TMP_PATH=~/tmp_install_python
# Versions section
PYTHON_MAJOR=2.7
PYTHON_VERSION=$PYTHON_MAJOR.14
rm -rf $TMP_PATH
mkdir $TMP_PATH
cd $TMP_PATH
1) Create a branch with the tag
git branch {tagname}-branch {tagname}
git checkout {tagname}-branch
2) Include the fix manually if it's just a change ....
git add .
git ci -m "Fix included"
or cherry-pick the commit, whatever is easier
git cherry-pick {num_commit}