Skip to content

Fix unterminated alias in git/gitconfig-osx#110

Open
Alhadis wants to merge 1 commit intochauncey-garrett:masterfrom
Cutlery-Drawer:fix-gitconfig
Open

Fix unterminated alias in git/gitconfig-osx#110
Alhadis wants to merge 1 commit intochauncey-garrett:masterfrom
Cutlery-Drawer:fix-gitconfig

Conversation

@Alhadis
Copy link
Copy Markdown

@Alhadis Alhadis commented Nov 18, 2022

As evidenced by its broken syntax highlighting, gitconfig-osx contains an unterminated shell command in one of its aliases:

# Change to working directory to the root of the git repo.
#
# @usage
# git root
#
root = "!_() { !pwd -P }"
#
# Diffs the changes git stash would apply.
#
# @usage

This PR simply adds the missing semicolon needed to terminate the call to pwd(1):

[alias]
	# Change to working directory to the root of the git repo.
	#
	# @usage
	#   git root
	#
	root = "!_() { !pwd -P; }"

	# Renames the provided stash.
	# http://stackoverflow.com/a/25935360/256429

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant