Skip to content

Instantly share code, notes, and snippets.

View VaughanJackson's full-sized avatar

Vaughan Jackson VaughanJackson

  • Cardiff, Wales, UK
View GitHub Profile
@jsaintrocc
jsaintrocc / Bugtracker-JPA2.json
Created October 26, 2020 22:27
Postman Collection for Bugtracker-JPA2 Class in Linkedin Learning
{
"info": {
"_postman_id": "eb57a476-4326-42d6-a54b-0b8d5b6c49aa",
"name": "Bugtracker-JPA2",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "http://localhost:8080/tza/application/",
"request": {
@alexeds
alexeds / move-stashes.md
Created September 5, 2012 18:00
Move your stashes from one repo to another

Move your stashes from one repo to another


This was useful for me when we created a new branch for a new major release, but were still working on our current version as well. I cloned our repo again and kept the new project on our new branch, but also wanted to get my stashes there.

Download your stashes

git stash show -p > patch

You'll have to specify your stash and name your file whatevery you want. Do this for as all your stashes, and you'll have patch files in your pwd.