{"id":17359207,"url":"https://github.com/deeleman/dotfiles","last_synced_at":"2025-07-30T15:04:00.604Z","repository":{"id":13070928,"uuid":"15751597","full_name":"deeleman/dotfiles","owner":"deeleman","description":"My personal boilerplate templates for GIT and BASH dotfile with useful aliases and color schemes","archived":false,"fork":false,"pushed_at":"2014-10-19T20:56:33.000Z","size":308,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-27T16:16:56.571Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deeleman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-01-08T23:40:15.000Z","updated_at":"2017-06-27T08:07:32.000Z","dependencies_parsed_at":"2022-08-31T13:32:57.310Z","dependency_job_id":null,"html_url":"https://github.com/deeleman/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/deeleman/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeleman%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeleman%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeleman%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeleman%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deeleman","download_url":"https://codeload.github.com/deeleman/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeleman%2Fdotfiles/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267889120,"owners_count":24161133,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-15T19:08:33.434Z","updated_at":"2025-07-30T15:04:00.579Z","avatar_url":"https://github.com/deeleman.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"#My Dotfiles\n\nThese are my personal boilerplate templates for GIT and BASH config files with useful aliases, basic (secure) login information and thorough color configuration schemes for common operations.\n\n## 1. Git\n\n\n### 1.a. Aliases\n* ``git st`` - shows files status including branch information\n* ``git co`` - performs a ``checkout`` command\n* ``git cb`` - performs a ``checkout`` command and creates the new branch on the fly\n* ``git cm`` - performs a commit expecting a message: ``commit -m``\n* ``git b`` - performs a ``branch``command\n* ``git bs`` - lists all branches sorted by commit date (including the last commit ref)\n* ``git df`` - performs a DIFF command with a colorful output\n* ``git l`` - retrieves the git log in a colorful format\n* ``git ll`` - retrieves the git log in a colorful format emphasizing the timestamp for each commit\n* ``git up`` - performs a ``pull``command\n* ``git upr`` - performs a ``pull``command rebasing files straight away\n* ``git p`` - performs a ``push``command and expects the origin data to be appended\n* ``git abort`` - resets all uncomitted changes and files by executing ``reset --hard HEAD``\n* ``git undo`` - undos last commit with ``reset HEAD~1``\n* ``git recommit`` - execute this for ammending the commit message\n* ``git rem`` - enlists remotes by executing ``remote -v``\n* ``git conflicts`` - shows list of files that have a merge conflict\n* ``git unstage [file]`` - removes file from next commit\n* ``git pending`` - lists all unpushed commits made so far\n* ``git here`` - shows only changes to files in current directory\n\n### 1.b. Colored Output\n* Adds colored output to `git branch`\n* Adds colored output to `git diff`\n* Adds colored output to `git status`\n\n## 2. BASH\n\nIn addition to the following shortcuts the install script will save a ``.vimrc`` resource file with coloured syntax enabled for VIM.\n\n### 2.a. Desktop Program Launchers\n\n* ``preview`` - Open a preview window\n* ``safari`` - Open a Safari window\n* ``firefox`` - Open a Firefox window\n* ``chrome`` - Open a Chrome window\n* ``f`` - Open a Finder window\n* ``textedit`` - Open a Textedit window\n* ``skype`` - Open a Skype window\n\n### 2.b. Directory Browsing Aliases\n\n* ``home`` - Moves prompt to ``~``\n* ``..`` - Moves prompt up one level\n* ``up`` - Same as above\n* ``all`` - Lists all files, including hidden files\n* ``lx`` - Lists all files sorted by extension\n* ``lk`` - Lists all files sorted by size ascending\n* ``lt`` - Lists all files sorted by date descending\n* ``lc`` - Lists all files sorted by/show change time,most recent last\n* ``lu`` - Lists all files sorted by/show access time,most recent last\n\n### 2.c. File Operations Aliases (mostly added interactive flags)\n\n* ``rm`` - Equivalent to ``rm -i``\n* ``cp`` - Equivalent to ``cp -i``\n* ``mv`` - Equivalent to ``mv -i``\n* ``mkdir``- Equivalent to ``mkdir -p``. Prevents accidentally clobbering files\n* ``dsclean`` - Get rid of those pesky .DS_Store files recursively from current location\n* ``ax`` - Assigns execution permissions (a+x)\n\n### 2.d. Environmental Aliases\n\n* ``flush`` - Flush your dns cache\n* ``showhidden`` - Show hidden files in Finder (for Mac OS X Mavericks)\n* ``hidehidden`` - Hide hidden files in Finder (for Mac OS X Mavericks)\n* ``path`` - Beautified display of PATH variables\n* ``libpath`` - Beautified display of LIBRARY PATH variables\n* ``du`` - Yields disk usage in a more readable format\n* ``df`` - Yields disk available in a more readable format\n* ``which`` - Describe a command\n* ``h`` - Console history\n* ``j`` - Print currently running jobs and their status\n\n## 3. Installation\n\nIf you're on a Mac/ you can leverage the install script included. Please be aware that the install script will require your ```sudo``` password at some point of the installation process. The script will copy the GIT and BASH\ndorfiles of your repo to the $HOME directory and will symlink the copied files straight away to make them available immediately, onc executed a ``source`` command.\n\n```\n$ ./install.sh\n```\n\n## 4. Acknowledgements\n\nRemarkable parts fo the GIT config file were borrowed from Jack Lukic's [Git-Aliases](https://github.com/jlukic/Git-Aliases) repo. The GIT exclusion file implements a good cut of the one proposed by Todd Motto in [Fireshell](https://github.com/toddmotto/fireshell).\nThe BASH config file is inspired on different sources but mostly on the [one maintained](https://github.com/bt3gl/Dotfiles-and-Bash-Examples/blob/master/configs/bashrc) by Marina AKA [bt3gl](https://github.com/bt3gl).\nLast but not least, the install script is mostly inspired by the one [provided by Paul Miller](https://github.com/paulmillr/dotfiles).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeeleman%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeeleman%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeeleman%2Fdotfiles/lists"}