FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
commitizen/commitizen/cz/utils.py at master · commitizen-tools/commitizen · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
commitizen-tools
/
commitizen
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
349
Star
3.5k
Code
Issues
115
Pull requests
47
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
commitizen
/
commitizen
/
cz
/
utils.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (20 loc) · 833 Bytes
Breadcrumbs
commitizen
/
commitizen
/
cz
/
utils.py
Copy path
File metadata and controls
31 lines (20 loc) · 833 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
os
import
re
import
tempfile
from
pathlib
import
Path
from
commitizen
import
git
from
commitizen
.
cz
import
exceptions
_RE_LOCAL_VERSION
=
re
.
compile
(
r"\+.+"
)
def
required_validator
(
answer
:
str
,
msg
:
object
=
None
)
->
str
:
if
not
answer
:
raise
exceptions
.
AnswerRequiredError
(
msg
)
return
answer
def
multiple_line_breaker
(
answer
:
str
,
sep
:
str
=
"|"
)
->
str
:
return
"
\n
"
.
join
(
line
.
strip
()
for
line
in
answer
.
split
(
sep
)
if
line
)
def
strip_local_version
(
version
:
str
)
->
str
:
return
_RE_LOCAL_VERSION
.
sub
(
""
,
version
)
def
get_backup_file_path
()
->
Path
:
project_root
=
git
.
find_git_project_root
()
project
=
project_root
.
as_posix
().
replace
(
"/"
,
"%"
)
if
project_root
else
""
user
=
os
.
environ
.
get
(
"USER"
,
""
)
return
Path
(
tempfile
.
gettempdir
(),
f"cz.commit%
{
user
}
%
{
project
}
.backup"
)
Back
|
FazBrowse Home
|
New Git URL