mirror of
https://github.com/MunGell/awesome-for-beginners.git
synced 2026-01-27 22:08:09 -08:00
Compare commits
3 Commits
MunGell-pa
...
728ee46fa8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
728ee46fa8 | ||
|
|
c880a2530a | ||
|
|
13692967e7 |
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@@ -20,7 +20,8 @@ jobs:
|
||||
run: node .github/scripts/build.js
|
||||
- name: Commit
|
||||
run: |
|
||||
git config --global user.name 'Shmavon Gazanchyan'
|
||||
git config --global user.email 'MunGell@users.noreply.github.com'
|
||||
git config --global user.name 'Github Action'
|
||||
git config --global user.email 'github-action@github.com'
|
||||
git commit -am "Update README.md"
|
||||
git push
|
||||
|
||||
|
||||
@@ -1348,15 +1348,6 @@
|
||||
],
|
||||
"description": "An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers"
|
||||
},
|
||||
{
|
||||
"name": "Mailpile",
|
||||
"link": "https://github.com/mailpile/Mailpile",
|
||||
"label": "Low-Hanging-Fruit",
|
||||
"technologies": [
|
||||
"Python"
|
||||
],
|
||||
"description": "A free & open modern, fast email client with user-friendly encryption and privacy features"
|
||||
},
|
||||
{
|
||||
"name": "coala",
|
||||
"link": "https://github.com/issues?utf8=✓&q=is:open+is:issue+user:coala+label:difficulty/newcomer++no:assignee",
|
||||
|
||||
21
make-branch.sh
Executable file
21
make-branch.sh
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -euof pipefail
|
||||
|
||||
profilename="$1"
|
||||
projectname="awesome-for-beginners"
|
||||
branchname="${2:-main}"
|
||||
|
||||
fullname="${profilename}/${branchname}"
|
||||
|
||||
branchname="${fullname}-branch-copy"
|
||||
|
||||
git checkout main
|
||||
git checkout -b "${branchname}"
|
||||
git remote add "${profilename}" "https://github.com/${profilename}/awesome-for-beginners.git"
|
||||
git fetch "${profilename}"
|
||||
git merge --no-gpg "${fullname}" -m "Merge ${fullname} into ${branchname}"
|
||||
git remote remove "${profilename}"
|
||||
git fetch --prune
|
||||
git push --set-upstream origin "${branchname}"
|
||||
git checkout main
|
||||
Reference in New Issue
Block a user