Skip to content

Instantly share code, notes, and snippets.

View andreirogal's full-sized avatar

Andrei Rogal andreirogal

View GitHub Profile
@andreirogal
andreirogal / .gitignore
Created February 15, 2020 18:55
linux,windows,python,poetry
# Created by https://www.gitignore.io/api/linux,python,pycharm,windows
# Edit at https://www.gitignore.io/?templates=linux,python,pycharm,windows
### Linux ###
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
@andreirogal
andreirogal / My-Git-Flow-prefix.md
Last active May 21, 2019 15:46
Git Flow preifx
  1. Open local repository
  2. Type into terminal nano .git/conf
  3. Change the file like this
[gitflow "prefix"]
    feature = feature/
    bugfix = bugfix/
    release = release/
 hotfix = hotfix/