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
| # Worktrees are an awesome way to separate the various branches of a git repo in to different directories. | |
| # each with their own git ignored dependencies, etc. | |
| # More info on this: https://www.youtube.com/watch?v=2uEqYw-N8uE&pp=ygUNZ2l0IHdvcmt0cmVlcw%3D%3D | |
| # - Clone the remote first (replace REMOTE, with git url) | |
| # - Setup origin to be fetched/pulled after that. | |
| # this way you'll be able to receive new branches made by other people/machines after the initial clone | |
| # - Create a new worktree from the existing main or master branch | |
| git clone REMOTE --bare |
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 install chromium-chromedriver | |
| $ sudo ln -s /usr/lib/chromium-browser/chromedriver /usr/bin/chromedriver |