[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

Post your last commit message

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 78
Thread images: 4

File: git_commit.png (52KB, 439x250px) Image search: [Google]
git_commit.png
52KB, 439x250px
Post your last commit message
>>
fixup
>>
Niggers
>>
Add npm stuff
>>
>>61257673
KANKER GODVERDOMME KUT TERING STERFFFFF

Translation: Cancer goddammit cunt tering DIEEEE
>>
Remove tmp file
>>
initial commit
>>
Minor bugfix and improvement
>>
initial commit
>>
I quit.
>>
new: Added control over sample->sample relationships

Fixes #47
>>
Adding suicide note
>>
>>61257673
Added README.md
>>
>>61257673
Added CODE_OF_CONDUCT.md
>>
>>61257691
Says nothing about what you actually did

>>61257701
Says nothing about what you actually did

>>61257705
Too vague, says nothing about what you actually did

>>61257719
What

>>61257822
Says nothing about what you actually did

>>61257875
Actually useful commit message

>>61257891
Actually useful commit message
>>
>>61257918
No one asked for your commentary
>>
Complete migration to subversion
>>
>>61257673
Changed email address
>>
Update everything. Known bugs? You tell me ;)
>>
>>61257673
>>>/r/eddit
>>
>>61257928
>Im here for summer
>>
Installed gentoo
>>
Fix people pasting weird unicode spaces
>>
>If an elephant never forgets, why don't they play jeopardy?
>>
>>61259167
why?
>>
>>61257908
git undo
>>
"Initial commit"
>>
Remove unnecessary image object creation
>>
>>61257673
>code
>>
>>61260691
I have a website which parses my school's "Teacher substitutions" page, displays it sorted by classes and alerts subscribed students about changes related to them.

Apparently people that update the page probablt write it in Word and paste the content to the Wordpress editor, because I've now seen two kind of non-breaking space used there - " " and "\xc2\xa0", my script didn't recognise the second one as a space.
>>
I don't program
>>
>>61257673
Refactored class errors raport, added missing ;
>>
>>61260912
>"\xc2\xa0"
nbsp in unicode U+00A0
c2 is one of utf8 markers
>"\xc2\xa0"
is probably nbsp in utf8, some users are sending utf8, some unicode, and some ansi, look for some diatrics or special chars to detect which is which

better yet, do it client side, then,
- convert text to the encoding you wish, and replalce the text, keeping the original saved,
- show a dropdown selection for source encoding,
- instruct the user to double check if the text looks right,
- and if it doesnt, try the other 2 options for source encoding until it looks right
>>
Removing comments from yaml file
>>
Update CMakeLists.txt
>>
> massive refactoring

Yeah, I'm shit.
>>
>Add incomplete test persistence in local storage

this could've been worded much better
>>
>>61261039
The site I'm parsing is not mine.

It looks like this: https://web.archive.org/web/20160417231522/http://www.kopernik.czest.pl:80/?page_id=1841

Inconsistent whitespace everywhere.

All I do is sort that, display on https://zast-karolba.rhcloud.com/ (though it's empty now, because the school's site also is) and send notifications.
>>
#7047 hairy Friday night live prod hack for openssl 1.1.x compat;

TODO: refactor when prod not on fire
>>
//why? Why not!!!
>>
>>61257673
>Fixed json part of share URL
The retarded faggots seriously thought sharing the complete state of the app in the URL as straight up json was a good idea.
>>
>>61257673
altered some syntax so the project is more inclusive to women, minorities, and transgender individuals.
>>
>>61258298
>>>/r/eddit summer meme
>>
>>61262995
kek
>>
Merge feature/IA-1441 in Develop


If you're not using gitflow don't talk to me any more.
>>
Fixed main menu padding
>>
>>61257673
cleaning
>>
> Updated release.json
>>
Update file to reflect changes previously made on server
>>
Refactored CPM to send chunks to blobService and not exceed request limit
>>
>>61257719
Stoer
>>
Set up VnRelease for Database
>>
>>61257673
until now, I couldn't imagine anything worse than Karlie Kloss.
>>
Hotfix paths to map links containing spaces

Signed-off-by: If you're not using sign-offs you're a horrible person
>>
fully updated ref links and completed work for 7/7/17
>>
>>61257673
cp -vi main.cpp{,.9}
'main.cpp' -> 'main.cpp.9'
>>
>>61257673
>Added missing file, derp
>>
>>61266705
you have to go back
>>
update readme, trying ssh auth
>>
>>61257673
is it normal to commit every fart, I only commit at the end of the day and only if I feel like my chances are stable enough
>>
task: noreindex option
t.I did once git commit -m "haaaaaaands" in a paying project
>>
File: 1497441631293.png (64KB, 355x731px) Image search: [Google]
1497441631293.png
64KB, 355x731px
>>61257673
yeah pretty much
>>
File: 1469099953250.jpg (74KB, 900x600px) Image search: [Google]
1469099953250.jpg
74KB, 900x600px
>>61257908
im fucking triggered m8
>>
git rebase is your friend lads

commit locally all you want and then rebase into a single commit and push that
>>
>>61266981
>rebase
explain this witchcraft
>>
>>61266989
ah, so basically let's say you're just on master, and make a bunch of commits with different messages and finally you have a working thing you want to push to the remote branch
you can git rebase, where you can edit the commits you've made locally, and it basically allows you to roll all of your locals into a single commit that would be your latest commit
try it some time
>>
Implemented DLL iterator
>>
installed gentoo
>>
gpush() { git add ./* && git commit --message='wip' && git push --set-upstream origin master; }

lol
>>
>>61267031
That's not what rebase does. Rebasing attempts to apply your local commits on top of some other base. So for example if you're doing some local commits but the remote has changed, you will want to rebase your local commits on top of the new tip of the remote before pushing your changes to the remote server.

But it doesn't roll up your local commits into one commit.
>>
>>61267169
while you're right, rebase does give you the ability to consolidate local commits into essentially a single commit against the base.
which gives you the ability to combine a bunch of hack commits (and messages) into a single commit against a base before you push

t. I've done this before
>>
"Removed test jekyll markup"
>>
>>61257673
The messages are stupid
>>
File: 1375773299400.jpg (19KB, 425x419px) Image search: [Google]
1375773299400.jpg
19KB, 425x419px
"include fixes"

I'm was actually talking about #include, not the act of including fixes.
>>
>>61257673
"Improved airflow and pressure balancing on internal sphere"
>>
"Vote crap"
>>
"Updated news/announcements. Mobs now use energy. Added 5th, 'mentalist'-style class"
>>
$git commit -am "please work this time"
Thread posts: 78
Thread images: 4


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.