PABLO (Payload Autonomy Box) Linux .files
Dotfiles to quickly configure a new PABLO box.
In a terminal, type:
bash -c "$(wget -qO - https://raw.github.com/moos-ivp/pablo-dotfiles/master/install.sh)"
To store personal configuration for git, like name and email, or any other setting; you can use the ~/.gitconfig.local
file.
It is appended to the .gitconfig
defined in this project to allow overiding the predefined settings.
[user]
email = [email protected]
name = Mohamed Saad IBN SEDDIK
If you want to add your own aliases or folders to the PATH
etc., you can create and set everything you need in a local file in ~/.bash.local
#!/bin/bash
PATH="/usr/local/bin:$PATH"
export PATH
alias g="git"
See the LICENSE
file.