Advertisement
Guest User

Untitled

a guest
Aug 4th, 2017
488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.05 KB | None | 0 0
  1. anil@localhost:~/as7/jboss-as$ git rebase --abort
  2. HEAD is now at 4340a3b changed jaas to security-domains
  3. anil@localhost:~/as7/jboss-as$ git status
  4. # On branch master
  5. # Untracked files:
  6. # (use "git add <file>..." to include in what will be committed)
  7. #
  8. # .metadata/
  9. nothing added to commit but untracked files present (use "git add" to track)
  10. anil@localhost:~/as7/jboss-as$ git rebase upstream/master
  11. First, rewinding head to replay your work on top of it...
  12. Applying: Fixing the standalone client module name
  13. Using index info to reconstruct a base tree...
  14. Falling back to patching base and 3-way merge...
  15. Auto-merging webservices/server-integration/pom.xml
  16. CONFLICT (content): Merge conflict in webservices/server-integration/pom.xml
  17. Failed to merge in the changes.
  18. Patch failed at 0001 Fixing the standalone client module name
  19.  
  20. When you have resolved this problem run "git rebase --continue".
  21. If you would prefer to skip this patch, instead run "git rebase --skip".
  22. To restore the original branch and stop rebasing run "git rebase --abort".
  23.  
  24. anil@localhost:~/as7/jboss-as$ vi webservices/server-integration/pom.xml
  25. anil@localhost:~/as7/jboss-as$ git rebase --continue
  26. webservices/server-integration/pom.xml: needs merge
  27. You must edit all merge conflicts and then
  28. mark them as resolved using git add
  29. anil@localhost:~/as7/jboss-as$ git status
  30. # Not currently on any branch.
  31. # Unmerged paths:
  32. # (use "git reset HEAD <file>..." to unstage)
  33. # (use "git add/rm <file>..." as appropriate to mark resolution)
  34. #
  35. # both modified: webservices/server-integration/pom.xml
  36. #
  37. # Untracked files:
  38. # (use "git add <file>..." to include in what will be committed)
  39. #
  40. # .metadata/
  41. no changes added to commit (use "git add" and/or "git commit -a")
  42. anil@localhost:~/as7/jboss-as$ git add webservices/server-integration/pom.xml
  43. anil@localhost:~/as7/jboss-as$ git status
  44. # Not currently on any branch.
  45. # Untracked files:
  46. # (use "git add <file>..." to include in what will be committed)
  47. #
  48. # .metadata/
  49. nothing added to commit but untracked files present (use "git add" to track)
  50. anil@localhost:~/as7/jboss-as$ git rebase --continue
  51. Applying: Fixing the standalone client module name
  52. No changes - did you forget to use 'git add'?
  53. If there is nothing left to stage, chances are that something else
  54. already introduced the same changes; you might want to skip this patch.
  55.  
  56. When you have resolved this problem run "git rebase --continue".
  57. If you would prefer to skip this patch, instead run "git rebase --skip".
  58. To restore the original branch and stop rebasing run "git rebase --abort".
  59.  
  60. anil@localhost:~/as7/jboss-as$ git rebase --continue
  61. Applying: Fixing the standalone client module name
  62. No changes - did you forget to use 'git add'?
  63. If there is nothing left to stage, chances are that something else
  64. already introduced the same changes; you might want to skip this patch.
  65.  
  66. When you have resolved this problem run "git rebase --continue".
  67. If you would prefer to skip this patch, instead run "git rebase --skip".
  68. To restore the original branch and stop rebasing run "git rebase --abort".
  69.  
  70. anil@localhost:~/as7/jboss-as$ git rebase --abort
  71. HEAD is now at 4340a3b changed jaas to security-domains
  72. anil@localhost:~/as7/jboss-as$ git status
  73. # On branch master
  74. # Untracked files:
  75. # (use "git add <file>..." to include in what will be committed)
  76. #
  77. # .metadata/
  78. nothing added to commit but untracked files present (use "git add" to track)
  79. anil@localhost:~/as7/jboss-as$ git log master..upstream/master
  80. commit 328151ea9f3b83816ea03f5dbd43898271c0df90
  81. Author: Anil Saldhana <anil.saldhana@jboss.com>
  82. Date: Wed Mar 16 14:10:31 2011 -0500
  83.  
  84. changed jaas to security-domains
  85.  
  86. commit 23478c35d65cecca86caf0af9e3886056b1dd3ed
  87. Author: Anil Saldhana <anil.saldhana@jboss.com>
  88. Date: Wed Mar 16 11:16:12 2011 -0500
  89.  
  90. test
  91.  
  92. commit ff07b4a653a5d68eefbdad15f938e60f42cd9e6a
  93. Author: Anil Saldhana <anil.saldhana@jboss.com>
  94. Date: Wed Mar 16 11:11:33 2011 -0500
  95.  
  96. add test case
  97.  
  98. commit b3e90b9cdc9a55f6c3f936bb2819a4c022f98987
  99. Author: Marcus Moyses <marcus.moyses@gmail.com>
  100. Date: Wed Mar 16 13:01:30 2011 -0300
  101.  
  102. replace jaas with security-domains in the model
  103.  
  104. commit d8e774b4059bff2d9f17e2e04bec6e8fdbb610f8
  105. Author: David M. Lloyd <david.lloyd@redhat.com>
  106. Date: Wed Mar 16 13:57:17 2011 -0500
  107.  
  108. Remove duplicate module def; be more emphatic about alphabetization
  109.  
  110. commit ae0b5f0d6314f9ace7490e38dd2c69bdef236105
  111. Author: David M. Lloyd <david.lloyd@redhat.com>
  112. Date: Wed Mar 16 11:53:18 2011 -0500
  113. anil@localhost:~/as7/jboss-as$ git pull --rebase upstream master
  114. From git://github.com/jbossas/jboss-as
  115. * branch master -> FETCH_HEAD
  116. First, rewinding head to replay your work on top of it...
  117. Applying: Fixing the standalone client module name
  118. Using index info to reconstruct a base tree...
  119. Falling back to patching base and 3-way merge...
  120. Auto-merging webservices/server-integration/pom.xml
  121. CONFLICT (content): Merge conflict in webservices/server-integration/pom.xml
  122. Failed to merge in the changes.
  123. Patch failed at 0001 Fixing the standalone client module name
  124.  
  125. When you have resolved this problem run "git rebase --continue".
  126. If you would prefer to skip this patch, instead run "git rebase --skip".
  127. To restore the original branch and stop rebasing run "git rebase --abort".
  128.  
  129. anil@localhost:~/as7/jboss-as$ vi webservices/server-integration/pom.xml
  130. anil@localhost:~/as7/jboss-as$ git rebase --continue
  131. webservices/server-integration/pom.xml: needs merge
  132. You must edit all merge conflicts and then
  133. mark them as resolved using git add
  134. anil@localhost:~/as7/jboss-as$ vi webservices/server-integration/pom.xml
  135. anil@localhost:~/as7/jboss-as$ git add
  136. Nothing specified, nothing added.
  137. Maybe you wanted to say 'git add .'?
  138. anil@localhost:~/as7/jboss-as$ git status
  139. # Not currently on any branch.
  140. # Unmerged paths:
  141. # (use "git reset HEAD <file>..." to unstage)
  142. # (use "git add/rm <file>..." as appropriate to mark resolution)
  143. #
  144. # both modified: webservices/server-integration/pom.xml
  145. #
  146. # Untracked files:
  147. # (use "git add <file>..." to include in what will be committed)
  148. #
  149. # .metadata/
  150. no changes added to commit (use "git add" and/or "git commit -a")
  151. anil@localhost:~/as7/jboss-as$ git add webservices/server-integration/pom.xml
  152. anil@localhost:~/as7/jboss-as$ git status
  153. # Not currently on any branch.
  154. # Untracked files:
  155. # (use "git add <file>..." to include in what will be committed)
  156. #
  157. # .metadata/
  158. nothing added to commit but untracked files present (use "git add" to track)
  159. anil@localhost:~/as7/jboss-as$ git commit -a -m “merge"
  160. >
  161. > ^C
  162. anil@localhost:~/as7/jboss-as$ git commit -a -m “merge"
  163. >
  164. > webservices/server-integration/pom.xml
  165. > ^C
  166. anil@localhost:~/as7/jboss-as$ git status
  167. # Not currently on any branch.
  168. # Untracked files:
  169. # (use "git add <file>..." to include in what will be committed)
  170. #
  171. # .metadata/
  172. nothing added to commit but untracked files present (use "git add" to track)
  173. anil@localhost:~/as7/jboss-as$ git merge upstream/master
  174. Already up-to-date.
  175. anil@localhost:~/as7/jboss-as$ git status
  176. # Not currently on any branch.
  177. # Untracked files:
  178. # (use "git add <file>..." to include in what will be committed)
  179. #
  180. # .metadata/
  181. nothing added to commit but untracked files present (use "git add" to track)
  182. anil@localhost:~/as7/jboss-as$ git merge master
  183. Auto-merging security/src/main/resources/schema/jboss-security.xsd
  184. Merge made by recursive.
  185. .../context/SecurityDomainObjectFactory.java | 179 ++++++++++++++++++++
  186. .../processors/SecurityDependencyProcessor.java | 6 +-
  187. .../services/org.jboss.as.server.Extension | 23 +++
  188. .../src/main/resources/schema/jboss-security.xsd | 21 +++
  189. .../META-INF/MANIFEST.MF | 8 +
  190. .../jboss/as/web/deployment/SecurityActions.java | 2 +-
  191. .../org/jboss/as/web/security/JBossWebRealm.java | 2 +-
  192. .../org/jboss/as/web/security/SecurityActions.java | 2 +-
  193. 8 files changed, 239 insertions(+), 4 deletions(-)
  194. create mode 100644 security/src/main/java/org/jboss/as/security/context/SecurityDomainObjectFactory.java
  195. create mode 100644 security/src/main/resources/META-INF/services/org.jboss.as.server.Extension
  196. anil@localhost:~/as7/jboss-as$ git status
  197. # Not currently on any branch.
  198. # Untracked files:
  199. # (use "git add <file>..." to include in what will be committed)
  200. #
  201. # .metadata/
  202. nothing added to commit but untracked files present (use "git add" to track)
  203. anil@localhost:~/as7/jboss-as$ git reset --hard upstream/master
  204. HEAD is now at 328151e changed jaas to security-domains
  205. anil@localhost:~/as7/jboss-as$ git status
  206. # Not currently on any branch.
  207. # Untracked files:
  208. # (use "git add <file>..." to include in what will be committed)
  209. #
  210. # .metadata/
  211. nothing added to commit but untracked files present (use "git add" to track)
  212.  
  213.  
  214.  
  215. anil@localhost:~/as7/jboss-as$ !1146
  216. git rebase --abort
  217. HEAD is now at 4340a3b changed jaas to security-domains
  218. anil@localhost:~/as7/jboss-as$ git status
  219. # On branch master
  220. # Untracked files:
  221. # (use "git add <file>..." to include in what will be committed)
  222. #
  223. # .metadata/
  224. nothing added to commit but untracked files present (use "git add" to track)
  225.  
  226.  
  227.  
  228. anil@localhost:~/as7/jboss-as$ !1149
  229. git pull --rebase upstream master
  230. From git://github.com/jbossas/jboss-as
  231. * branch master -> FETCH_HEAD
  232. First, rewinding head to replay your work on top of it...
  233. Applying: Fixing the standalone client module name
  234. Using index info to reconstruct a base tree...
  235. Falling back to patching base and 3-way merge...
  236. Auto-merging webservices/server-integration/pom.xml
  237. CONFLICT (content): Merge conflict in webservices/server-integration/pom.xml
  238. Failed to merge in the changes.
  239. Patch failed at 0001 Fixing the standalone client module name
  240.  
  241. When you have resolved this problem run "git rebase --continue".
  242. If you would prefer to skip this patch, instead run "git rebase --skip".
  243. To restore the original branch and stop rebasing run "git rebase --abort".
  244.  
  245. anil@localhost:~/as7/jboss-as$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement