Advertisement
Guest User

Untitled

a guest
Feb 1st, 2013
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. ~/tmp/sandbox $ git status
  2. # On branch master
  3. # Changes not staged for commit:
  4. # (use "git add/rm <file>..." to update what will be committed)
  5. # (use "git checkout -- <file>..." to discard changes in working directory)
  6. #
  7. # deleted: .project
  8. #
  9. no changes added to commit (use "git add" and/or "git commit -a")
  10. ~/tmp/sandbox $ git checkout .project
  11. ~/tmp/sandbox $ git status
  12. # On branch master
  13. nothing to commit, working directory clean
  14. ~/tmp/sandbox $ git rebase -i HEAD~2
  15. Waiting for Emacs...
  16. Waiting for Emacs...
  17. [detached HEAD 2e27da9] do fut vs. gut
  18. Author: Valentin <valtih1978@gmail.com>
  19. 10 files changed, 388 insertions(+), 189 deletions(-)
  20. create mode 100644 .project
  21. create mode 100644 BuildPath.txt
  22. delete mode 100644 b01.vhd
  23. delete mode 100644 b01_tb_r.vhd
  24. create mode 100644 bug.vhd
  25. create mode 100644 fault_sim.vhd
  26. create mode 100644 modelsim.do
  27. create mode 100644 ref.vhd
  28. create mode 100644 stimuli
  29. delete mode 100644 stimuli_b01.txt
  30. Successfully rebased and updated refs/heads/master.
  31. ~/tmp/sandbox $ git status
  32. # On branch master
  33. nothing to commit, working directory clean
  34. ~/tmp/sandbox $ ls bug.vhd
  35. bug.vhd
  36. ~/tmp/sandbox $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement