| gitflow | git |
|---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #To visualize branches: | |
| git branch | |
| #To create a new branch: | |
| git branch testbranch | |
| #To change to created branch: | |
| git checkout testbranch | |
| #Track new files: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /tmp | |
| git clone https://github.com/facebook/watchman.git | |
| cd watchman/ | |
| git checkout v4.7.0 | |
| sudo apt-get install -y autoconf automake build-essential python-dev libtool libssl-dev | |
| ./autogen.sh | |
| ./configure | |
| make | |
| sudo make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # checkout, compile & install | |
| git clone https://github.com/facebook/watchman.git | |
| cd watchman/ | |
| git checkout v4.9.0 | |
| sudo apt-get install -y autoconf automake build-essential python-dev libssl-dev libtool | |
| ./autogen.sh | |
| ./configure | |
| make | |
| sudo make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get update | |
| sudo apt-get -y upgrade | |
| sudo apt-get install python3-setuptools | |
| sudo easy_install3 pip | |
| pip -V | |
| #pip 9.0.1 from /usr/local/lib/python3.5/dist-packages/pip-9.0.1-py3.5.egg (python 3.5) | |
| sudo chown -R username:username ~/.local/ | |
| # add to ./*shrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .shadow-stuff { | |
| -moz-border-radius: 0% 0% 100% 100% / 0% 0% 8px 8px; | |
| -webkit-border-radius: 0% 0% 100% 100% / 0% 0% 8px 8px; | |
| border-radius: 0% 0% 100% 100% / 0% 0% 8px 8px; | |
| -moz-box-shadow: rgba(0,0,0,.30) 0 2px 3px; | |
| -webkit-box-shadow: rgba(0,0,0,.30) 0 2px 3px; | |
| box-shadow: rgba(0,0,0,.30) 0 2px 3px; | |
| } | |
| .container { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # First you update your system | |
| sudo apt-get update && sudo apt-get dist-upgrade | |
| # Clean-up System | |
| sudo apt-get purge epiphany-browser epiphany-browser-data #browser | |
| sudo apt-get purge midori-granite #browser | |
| sudo apt-get purge noise | |
| sudo apt-get purge scratch-text-editor #text-editor | |
| sudo apt-get purge modemmanager | |
| sudo apt-get purge geary #email |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| versionMaj="1" | |
| versionMin="0" | |
| versionRev="1" | |
| version="$versionMaj.$versionMin-$versionRev" | |
| echo "Removing old Postman tarballs" | |
| rm -f $(ls Postman*.tar.gz) |