Awesome List Updates on Jul 15, 2015
5 awesome lists updated today.
🏠 Home · 🔍 Search · 🔥 Feed · 📮 Subscribe · ❤️ Sponsor
1. Awesome Deep Learning
Table of Contents / Papers
Researchers / Websites
Researchers / Datasets
Researchers / Frameworks
Researchers / Miscellaneous
2. Awesome Cpp
Networking
- cpr (⭐6.4k) - A modern C++ HTTP requests library with a simple but powerful interface. Modeled after the Python Requests module. [MIT] website
3. Awesome Perl
DevOps Tools / NoSQL Databases
- Rex - Remote Execution
4. Tips
git-tips
Collection of
git-tips
, want to add your tips? Checkout contributing.md
English | 中文 (⭐15k) | Русский (⭐599) | 한국어 (⭐989) | Tiếng Việt (⭐22) | 日本語 (⭐226) | नेपाली (⭐0) | Polski (⭐5) | فارسی (⭐0)
Tools:
- git-tip - A handy CLI to make optimum use of these tips. (Here in Docker container (⭐11))
P.S: All these commands are tested on git version 2.7.4 (Apple Git-66)
.
Sync with remote, overwrite local changes
git fetch origin && git reset --hard origin/master && git clean -f -d
List of all files till a commit
git ls-tree --name-only -r <commit-ish>
Git reset first commit
git update-ref -d HEAD
List all the conflicted files
git diff --name-only --diff-filter=U
List all branches that are already merged into master
git branch --merged master
List all branches and their upstreams, as well as last commit on branch
git branch -vv
Track upstream branch
git branch -u origin/mybranch
Delete local branch
git branch -d <local_branchname>
Changing a remote's URL
git remote set-url origin <URL>
Prevent auto replacing LF with CRLF
git config --global core.autocrlf false
5. Awesome Geek Podcasts
In English
- The Loosely Coupled Podcast - Jeff Carouth and Matt Frost combine their decades of experience as web developers to talk about developer life.
- Prev: Jul 16, 2015
- Next: Jul 14, 2015