FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-docs-pt-br/scripts/commit.sh at main · python/python-docs-pt-br · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
python-docs-pt-br
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
41
Star
161
Code
Issues
13
Pull requests
4
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-docs-pt-br
/
scripts
/
commit.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
52 lines (41 loc) · 1.38 KB
Breadcrumbs
python-docs-pt-br
/
scripts
/
commit.sh
Copy path
File metadata and controls
executable file
·
52 lines (41 loc) · 1.38 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!
/bin/sh
#
Commit changed files filtering to the git repository
#
#
SPDX-License-Identifier: CC0-1.0
set
-eu
test
-n
${PYDOC_LANGUAGE+x}
rootdir=
$(
realpath
$(
dirname
$0
)
/..
)
language_dir=
"
${PYDOC_LANG_DIR
:-
$rootdir
/
cpython
/
Doc
/
locales
/
${PYDOC_LANGUAGE}
/
LC_MESSAGES}
"
cd
"
$language_dir
"
extra_files=
"
.tx/config stats.json potodo.md
"
set
+u
if
[
-n
"
${CI+x}
"
]
;
then
git config user.email
"
41898282+github-actions[bot]@users.noreply.github.com
"
git config user.name
"
github-actions
"
fi
set
-u
#
Set for removal the deleted obsolete PO files
git status -s
|
grep
'
^ D
'
|
cut -d
'
'
-f3
|
xargs -r git rm
#
Add only updates that do not consist only of the following header lines
git diff -I
'
^# Copyright
'
-I
'
^"Project-Id-Version:
'
-I
'
^"POT-Creation-Date:
'
-I
'
^"Language:
'
--numstat
*
.po
**
/
*
.po
|
cut -f3
|
xargs -r git add -v
#
Add currently untracked PO files, and update other helper files
untracked_files=
$(
git ls-files -o --exclude-standard
*
.po
**
/
*
.po
)
if
[
-n
"
${untracked_files+x}
"
]
;
then
git add -v
$untracked_files
fi
#
Debug in GitHub Actions
set
+u
if
[
-n
"
${CI+x}
"
]
;
then
echo
"
::group::status
"
git status
echo
"
::endgroup::
"
echo
"
::group::diff
"
git diff
echo
"
::endgroup::
"
fi
set
-u
#
Commit only if there is any cached file
if
!
git diff-index --cached --quiet HEAD
;
then
git add -v
$extra_files
git commit -vm
"
$(
$rootdir
/scripts/generate_commit_msg.py
)
"
fi
Back
|
FazBrowse Home
|
New Git URL