-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
89 lines (86 loc) · 2.7 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# A new repo from scratch
# Say you’ve just got some data from a collaborator and are about to start exploring it.
#
# Create a directory to contain the project.
# Go into the new directory.
# $ git init.
# Write some code.
# $ git add to add the files (see the typical use page).
# $ git commit.
#
# A new repo from an existing project
#
# Say you’ve got an existing project that you want to start tracking with git.
#
# Go into the directory containing the project.
# $ git init.
# $ git add (to add all of the relevant files)
# You’ll probably want to create a .gitignore file right away, to indicate all of the files you don’t want to track.
# Use git add .gitignore, too.
# $ git commit.
#
# Connect it to github
#
# Add user name and email as global
# $ git config --global user.name "FIRST_NAME LAST_NAME"
# $ git config --global user.email "[email protected]"
#
#Add user name and email for specific git repository
# $ git config --global user.name "FIRST_NAME LAST_NAME"
# $ git config --global user.email "[email protected]"
# You’ve now got a local git repository. You can use git locally, like that, if you want. But if you want the thing to have a home on github, do the following.
#
# Go to github.
# Log in to your account.
# Click the new repository button in the top-right. You’ll have an option there to initialize the repository with a README file, but I don’t.
# Click the “Create repository” button.
#
# Now, follow the second set of instructions, “Push an existing repository…”
#
# $ git remote add origin [email protected]:username/new_repo
# $ git push -u origin master
# Push tags to remote location
# $ type git push --tags
#
# Rename a tag
# $ git tag new old (alias old with new)
# $ git -d old (delete old)
#
# Back to tag
# $ git checkout tags/tag_name
# Back to master
# $ git checkout master
#
#API: an (incompatible) API change
#BENCH: changes to the benchmark suite
#BLD: change related to building numpy
#BUG: bug fix
#DEP: deprecate something, or remove a deprecated object
#DEV: development tool or utility
#DOC: documentation
#ENH: enhancement
#MAINT: maintenance commit (refactoring, typos, etc.)
#REV: revert an earlier commit
#STY: style fix (whitespace, PEP8)
#TST: addition or modification of tests
#REL: related to releasing
#git log --pretty="format:`#%h <https://github.com/MilanSkocic/datadigitizer/commit/%H>`_-%cn-%s"
#git ls-remote origin 'pull/*/head'
#`PR#1 <https://github.com/MilanSkocic/datadigitizer/pull/1/>`_
# twine upload -r testpypi dist/*
# twine upload -r pypi dist/*
build/
dist/
doc/build/
doc/source/_build
.idea/
.vscode/
.mypy_cache/
.env/
*.log
*.pyc
*.pyo
*.egg-info
*.so
Pipfile.lock
.DS_Store