-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create vagrant packaging sample config
Changed ixed columns to text type
- Loading branch information
Showing
4 changed files
with
25 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ bin/* | |
Sample/* | ||
.vagrant | ||
osm2pgrouting | ||
tools/vagrant/packaging.sh | ||
*.o | ||
*~ | ||
.project | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
# Vagrant - Virtualized Development | ||
# Copyright(c) pgRouting Contributors | ||
# | ||
# Prepare packaging | ||
# Prepare packaging (sample) | ||
# ------------------------------------------------------------------------------ | ||
|
||
echo "DEBEMAIL=[email protected]" > ~/.bash_aliases | ||
echo "DEBFULLNAME='First Last'" >> ~/.bash_aliases | ||
echo "DEBEMAIL=[email protected]" > ~/.bash_aliases | ||
echo "DEBFULLNAME='Daniel Kastl (Georepublic)'" >> ~/.bash_aliases | ||
|
||
git config --global user.name "First Last" | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Daniel Kastl" | ||
git config --global user.email "[email protected]" | ||
git config --global core.editor vim | ||
git config --global color.ui true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
# ------------------------------------------------------------------------------ | ||
# Vagrant - Virtualized Development | ||
# Copyright(c) pgRouting Contributors | ||
# | ||
# Prepare packaging (sample) | ||
# ------------------------------------------------------------------------------ | ||
|
||
echo "[email protected]" > ~/.bash_aliases | ||
echo "DEBFULLNAME='First Last'" >> ~/.bash_aliases | ||
|
||
git config --global user.name "First Last" | ||
git config --global user.email "[email protected]" | ||
git config --global core.editor vim | ||
git config --global color.ui true |