mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge branch 'tor-github/pr/1099'
This commit is contained in:
commit
438b7eec85
4
changes/bug30840
Normal file
4
changes/bug30840
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor bugfixes (git scripts):
|
||||
- Stop hard-coding the bash path in the git scripts. Some OSes don't
|
||||
have bash in /usr/bin, others have an ancient bash at this path.
|
||||
Fixes bug 30840; bugfix on 0.4.0.1-alpha.
|
3
changes/bug30841
Normal file
3
changes/bug30841
Normal file
@ -0,0 +1,3 @@
|
||||
o Minor bugfixes (git scripts):
|
||||
- Stop hard-coding the tor master branch name and worktree path in the
|
||||
git scripts. Fixes bug 30841; bugfix on 0.4.0.1-alpha.
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
##############################
|
||||
# Configuration (change me!) #
|
||||
@ -17,9 +17,9 @@
|
||||
GIT_PATH=${TOR_FULL_GIT_PATH:-"FULL_PATH_TO_GIT_REPOSITORY_DIRECTORY"}
|
||||
# The tor master git repository directory from which all the worktree have
|
||||
# been created.
|
||||
TOR_MASTER_NAME="tor"
|
||||
TOR_MASTER_NAME=${TOR_MASTER_NAME:-"tor"}
|
||||
# The worktrees location (directory).
|
||||
TOR_WKT_NAME="tor-wkt"
|
||||
TOR_WKT_NAME=${TOR_WKT_NAME:-"tor-wkt"}
|
||||
|
||||
#########################
|
||||
# End of configuration. #
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
##################################
|
||||
# User configuration (change me) #
|
||||
@ -17,9 +17,9 @@
|
||||
GIT_PATH=${TOR_FULL_GIT_PATH:-"FULL_PATH_TO_GIT_REPOSITORY_DIRECTORY"}
|
||||
# The tor master git repository directory from which all the worktree have
|
||||
# been created.
|
||||
TOR_MASTER_NAME="tor"
|
||||
TOR_MASTER_NAME=${TOR_MASTER_NAME:-"tor"}
|
||||
# The worktrees location (directory).
|
||||
TOR_WKT_NAME="tor-wkt"
|
||||
TOR_WKT_NAME=${TOR_WKT_NAME:-"tor-wkt"}
|
||||
|
||||
#########################
|
||||
# End of configuration. #
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# The remote upstream branch on which git.torproject.org/tor.git points to.
|
||||
UPSTREAM_BRANCH=${TOR_UPSTREAM_REMOTE_NAME:-"upstream"}
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# To install this script, copy it to .git/hooks/pre-commit in local copy of
|
||||
# tor git repo and make sure it has permission to execute.
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# git pre-push hook script to:
|
||||
# 1) prevent "fixup!" and "squash!" commit from ending up in master, release-*
|
||||
|
Loading…
Reference in New Issue
Block a user