Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/bitbucket/bb-pr-create.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# Authentication and default settings
source "$GITNAP/utils/auth.sh"
Expand Down
1 change: 1 addition & 0 deletions src/bitbucket/bb-pr-merge.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# Authentication and default settings
source "$GITNAP/utils/auth.sh"
Expand Down
1 change: 1 addition & 0 deletions src/bitbucket/bb-pr-update.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# Authentication and default settings
source "$GITNAP/utils/auth.sh"
Expand Down
1 change: 1 addition & 0 deletions src/bitbucket/bb-repo-create.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


# Construct basic authentication header
Expand Down
1 change: 1 addition & 0 deletions src/bitbucket/bb-repo-delete.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


# Construct basic authentication header
Expand Down
1 change: 1 addition & 0 deletions src/bitbucket/bb-repo-edit.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


# Construct basic authentication header
Expand Down
1 change: 1 addition & 0 deletions src/github/gh-notification-delete.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# This section loads configuration files needed to set environment variables
# such as GITHUB_TOKEN. If these variables are already exported globally in the shell,
Expand Down
1 change: 1 addition & 0 deletions src/github/gh-notification-list.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# This section loads configuration files needed to set environment variables
# such as GITHUB_TOKEN. If these variables are already exported globally in the shell,
Expand Down
1 change: 1 addition & 0 deletions src/github/gh-pr-create.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# Authentication and default settings
source "$GITNAP/utils/auth.sh"
Expand Down
1 change: 1 addition & 0 deletions src/github/gh-pr-merge.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# Authentication and default settings
source "$GITNAP/utils/auth.sh"
Expand Down
1 change: 1 addition & 0 deletions src/github/gh-pr-update.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# Authentication and default settings
source "$GITNAP/utils/auth.sh"
Expand Down
1 change: 1 addition & 0 deletions src/github/gh-repo-create.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


function create_github_repo() {
Expand Down
1 change: 1 addition & 0 deletions src/github/gh-repo-delete.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


function delete_github_repo() {
Expand Down
1 change: 1 addition & 0 deletions src/github/gh-repo-edit.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


function edit_github_repo() {
Expand Down
Empty file modified src/github/gh-search-repo.sh
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions src/gitlab/gl-pr-create.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# Authentication and default settings
source "$GITNAP/utils/auth.sh"
Expand Down
1 change: 1 addition & 0 deletions src/gitlab/gl-pr-merge.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# Authentication and default settings
source "$GITNAP/utils/auth.sh"
Expand Down
1 change: 1 addition & 0 deletions src/gitlab/gl-pr-update.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

# Authentication and default settings
source "$GITNAP/utils/auth.sh"
Expand Down
1 change: 1 addition & 0 deletions src/gitlab/gl-repo-create.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


function create_gitlab_repo() {
Expand Down
1 change: 1 addition & 0 deletions src/gitlab/gl-repo-delete.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


function delete_gitlab_repo() {
Expand Down
1 change: 1 addition & 0 deletions src/gitlab/gl-repo-edit.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


function edit_gitlab_repo() {
Expand Down
1 change: 1 addition & 0 deletions src/gitlab/gl-search-repo.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


function search_gitlab_repo() {
Expand Down
1 change: 1 addition & 0 deletions src/gitnap/gn-init-git.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

source "$GITNAP/utils/down_gitignore.sh"
source "$GITNAP/utils/down_license.sh"
Expand Down
Empty file modified src/utils/auth.sh
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions src/utils/down_gitignore.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


function download_gitignore() {
Expand Down
1 change: 1 addition & 0 deletions src/utils/down_license.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail


function download_license() {
Expand Down
Empty file modified src/utils/endpoints.sh
100644 → 100755
Empty file.
Loading