Guest User

Untitled

a guest
Feb 24th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. bicou@mba ~/AndroidStudioProjects/xxx (master) $ git status
  2. On branch master
  3. Your branch is ahead of 'origin/master' by 30 commits.
  4. (use "git push" to publish your local commits)
  5.  
  6. You have unmerged paths.
  7. (fix conflicts and run "git commit")
  8. (use "git merge --abort" to abort the merge)
  9.  
  10. Changes to be committed:
  11.  
  12. modified: alpha.sh
  13.  
  14. Unmerged paths:
  15. (use "git add <file>..." to mark resolution)
  16.  
  17. both modified: app/src/main/res/values-fr/strings.xml
  18.  
  19. bicou@mba ~/AndroidStudioProjects/xxx (master) $ tail -5 app/src/main/res/values-fr/strings.xml
  20. <<<<<<< HEAD
  21. </resources>
  22. =======
  23. </resources>
  24. >>>>>>> develop
  25.  
  26. bicou@mba ~/AndroidStudioProjects/xxx (master) $ tail -5 app/src/main/res/values-fr/strings.xml | tail -2 | head -1 | xxd
  27. 00000000: 3c2f 7265 736f 7572 6365 733e 0a </resources>.
  28.  
  29. bicou@mba ~/AndroidStudioProjects/xxx (master) $ tail -5 app/src/main/res/values-fr/strings.xml | head -2 | tail -1 | xxd
  30. 00000000: 3c2f 7265 736f 7572 6365 733e 0a </resources>.
  31.  
  32. bicou@mba ~/AndroidStudioProjects/xxx (master) $ git diff develop -- app/src/main/res/values-fr/strings.xml
  33. diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
  34. index 5804034..2097f87 100644
  35. --- a/app/src/main/res/values-fr/strings.xml
  36. +++ b/app/src/main/res/values-fr/strings.xml
  37. @@ -96,4 +96,4 @@
  38. <string name="fragment_min_max_set_button">Valider</string>
  39. <string name="fragment_min_max_clear_button">Effacer</string>
  40. <string name="drawer_name_no_account">Invité</string>
  41. -</resources>
  42. No newline at end of file
  43. +</resources>
Add Comment
Please, Sign In to add comment