[Boards: 3 / a / aco / adv / an / asp / b / biz / c / cgl / ck / cm / co / d / diy / e / fa / fit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mu / n / news / o / out / p / po / pol / qa / r / r9k / s / s4s / sci / soc / sp / t / tg / toy / trash / trv / tv / u / v / vg / vp / vr / w / wg / wsg / wsr / x / y ] [Home]
4chanarchives logo
Post the commit message of your most recent commit. GO
Images are sometimes not shown due to bandwidth/network limitations. Refreshing the page usually helps.

You are currently reading a thread in /g/ - Technology

Thread replies: 124
Thread images: 5
File: push.png (73 KB, 1200x838) Image search: [Google]
push.png
73 KB, 1200x838
Post the commit message of your most recent commit.

GO
>>
I don't use Github because they support SJW faggotry and are backed by the Jewry.
>>
>>54479136
You think git is github? Get the fuck out
>>
>>54479100
vo_opengl: add optional hook points

These are "sequence points" where the image could be rendered out to an
FBO, hooked, and re-loaded if any such hook exists. This is perfect for
things like the current user shaders system, as well as optional effects
like unsharp masking.

Note that since we have to pick *some* FBO to store the optionally
hooked texture, we just store it in an array indexed by an increasing
counter. Since we only ever store as many as MAX_TEXTURE_HOOKS + all
internal hook points entries, this is guaranteed to be enough space.

This commit also removes some of the now unused FBOs.
>>
>IO: OBJ: Fix loading indices

no body because im lazy
>>
>Modified the Levenberg-Marquardt fit plot generation so that the entire curve fits in the plot. The y limit was changed from the highest value in the input data to the highest value on the curve (i.e. the value at optimal parameters).

Just some tweaking.
>>
>>54479100
Fixed FPS inconstancy in menu and playback. FPS now plays at the expected speed, and frame positions are interpolated as floats instead of ints ensuring smooth playback when using requestAnimationFrame, either natively or using the polyfill.
>>
>>54479207
>ending with a period
>too long

u a fucking puff?
>>
>>54479207
>>54479216
>past tense
0/10 would not hire
>>
Is There a programming board? Tired of sharing space with gamers
>>
>>54479394
no, /prog/ is dead.
>>
>>54479234
But these things occurred in the past. Are you retarded?
>>
>>54479438
yes but commits should be in the present tense
should fit into a sentence like "If merged, this commit will..."
>>
>>54479450
Who the fuck told you that?
>>
>>54479473
https://github.com/torvalds/linux/commits/master
look at the commit log for linux
>>
>>54479473
Git documentation.

This >>54479450 is wrong however.

The message should be imperative, while many non-imperative sentences could also fit in the "If merged, this commit will..."
>>
> think i fixed it

All of my commits are like this
>>
>work you piece of shit

Imperative.
>>
>>54479149 Underrated.
>>
Add turret tracking


The turret now tracks the player around the map, rotating to keep them
in line-of-sight. Takes the arctangent of the difference between the
player's position and the turret's. Converts that from radians into
degrees, and then subtracts 90 from that to appropriately align it.

Given an x-distance and a y-distance on a cartesian plane, we can take
the inverse of the result of dividing y ÷ x (the tangent measurement),
which gives us the angle from the baseline.
>>
8============D
>>
File: 1460403574866.png (12 KB, 1006x257) Image search: [Google]
1460403574866.png
12 KB, 1006x257
>>54479100
Project just hit the 20 function mark so I had to get some ctags up in this bitch
>>
>>54479136
He thinks git == github...
>>
>>54479683
>Not adding tags to your global gitignore
>Polluting a project-specific gitignore with temp files from the tools you happen to use
anon...
>>
Switch to ESLint

APID-70, APID-71

JSCS and JSHint have been replaced by ESLint in the lint pipeline. Any
settings in .eslintrc files in repositories using the test package will
override the (empty) defaults in this test package settings. The only
choice made by the test package is to use the airbnb-base rules.

This is a breaking change (as pipelines that passed the old code quality
checks probably won't pass now), and the version has been bumped to
2.0.0 to reflect this.
>>
>>54479640
>Explaining basic trigonometry like you're writing a tutorial for 16 year olds
>Putting operational documentation into the git commit message instead of a comment
0/10
>>
>>54479954
I find it helpful to document how I came to use a particular method. Sorry that approach doesn't work for you bud.
>>
* debd51f (HEAD, origin/master, master, dev) Formatting changes
>>
>>54480074
Why don't you write it in the fucking code?
Nobody is going to read git commit messages.
>>
>>54479136
>says "SJW" unironically
>assumes git is github
This is an 18+ board
>>
>>54479905
It's a personal project, I can do what I want

>>>Polluting a project-specific gitignore with temp files from the tools you happen to use

That's kinda the point aint it?

>>>Not adding tags to your global gitignore

I don't have a global gitignore, dont need one yet. But I do have a gitignore.io script to tailor a project's gitignore

https://github.com/joeblau/gitignore.io
>>
>>54479905
You're that guy who doesn't put .*.sw? in his project's .gitignore, aren't you?

Fuck you dood
>>
>Changed the default license mask back.
>XBLA games should be unlocked now.
>>
Why is git so conceptually difficult to understand?

Using git for basic shit is easy, git push, git stash git pull, git merge, etc.
But as soon as you wanna do something more difficult, like editing the commit message of a push from 5 commits ago, you have to google it, every single time.
>>
>>54480421
HEAD~5 is 5 commit ago

Now do the rest
>>
>>54480242
I read my git commit messages when I'm reviewing my code, that's what it's there for.
>>
>>54480421
Is git "conceptually difficult to understand," though?

In the end, the commit log is just a directed acyclic graph. Each commit/file/whatever is stored by its SHA-1, and commits point to the SHA-1 of the previous commit. Hence, when you change the commit message of a commit 5 commits back, you change its SHA-1, so you have to walk forward, changing the SHA-1 to which every subsequent commit points, modifying their SHA-1s in the process.

But yeah, git's interface is pretty opaque sometimes.
>>
>>54480747
>Is git "conceptually difficult to understand," though?
>In the end, the commit log is just a directed acyclic graph.
>>
Merge branch 'release/0.2.8'
>>
>>54479100
updated to react 15
>>
>>54479100
It only references the JIRA ticket associated and its title. Then it's pushed onto Crucible for a code review, and lastly the guy in charge of CI integrates it and pushes it to the official repo.

It's time you drop your shitty practices OP.
>>
M make.conf
M make.conf.backup
A package.use/electron
A package.use/libgit2
>>
>>54479220

Leave off him! He could have put that final full stop inside the parenthesis
>>
>>54480331
Only thing that goes into gitignore is generated files that come out of your build process. (e.g. ‘build’ dir)

Everything else (e.g. swap files from your editors) goes into your own gitignore.

If adding them there is somehow too hard for you to do, my projects don't need your shitty code.
>>
> big update

Yeah my commits suck.
>>
>>54480969
GENTOO
E
T
N
O
O
>>
>>54479100
>""
>>
update
>>
More work on display, trying to organize everything
>>
>>54479100
"cleanup"

- Feels good man.
>>
>>54479136
off
>>
>>54479100
Added border around window and full date


That's it.
>>
>D-5853: Now users are forbidden to write to the log table
fuck jira and CI taking the same time that they used to save
>>
>>54481835
>yfw Linus himself disagrees
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/.gitignore#n12
>>
>>54479100
>181867731d I just don't know anymore
>>
>>54482985
>no swap files present
I only see generated build output produced by the Makefile in that gitignore
>>
>>54483059
Okay, and the one .kdev4 because what the fuck, KDE
>>
Reverted changes and fired Jamal for fucking up the code.
>>
>>54483083
That's racist.
>>
>>54483109
How the fuck is that racist? He is a fucking white dude.
>>
>>54483059
.*

happens to cover vim swap files, which start with a period.

I apologize for baiting you here -- I think your rule actually makes a lot of sense. Having a line ignoring swap files is just more convenient for those who haven't configured a global .gitignore (like me before I read your post). But yeah, if you can't take 3 seconds to create a file in your homedir, what the fuck are you doing contributing to a free software project?

Plus, you're not alone. Django makes the same recommendation, for instance:
https://github.com/django/django/blob/master/.gitignore
>>
>>54483226
>
# If you need to exclude files such as those generated by an IDE, use
# $GIT_DIR/info/exclude or the core.excludesFile configuration variable as
# described in https://git-scm.com/docs/gitignore


Yeah or just ~/.gitignore
>>
 ef424b1 Updated comments 
>>
adds handling of location time fractions, fixes #2
>>
"fixed stuff"
>>
>>54479100
>fix pt 1/2
>fix pt 2/3
>fix pt 3/4
>...
>>
Use stackview for layout in `NowOnView`


Minor updates to a boxing app.
>>
>>54484335
>he fell for the backtick meme
>>
Anon, did you remember to squash your commits before merging?
>>
>>54479100
`Fix Observable types when saving to database`

not particularly interesting
>>
>>54479100
>nothing to commit
>>
I usually just put in a few emojis. Just ones that happen to catch my eye.
>>
>>54484606
He forgot to add
>>
>>54479100
    :^)
>>
>>54485703
>committing the smiley with the caret nose
>>
>>54485728
I don't even know what I changed in that commit.

Probably didn't when I committed it either.
>>
>>54480791
Hello webdevfag.
>>
>>54480791
>directed acyclic graph
tree
>>
>>54485822
DAG != tree

where the fuck did you learn CS? go get your money back
>>
>>54485851
they're pretty similar though
>>
>>54485851
>semantics equals skill
nigger
>>
>>54485989
>not understanding the fundamental difference
>this is somehow about semantics
>>
>>54485989

>"muh semantics"
What a pajeet says when exposed to a concept he knows nothing about.
>>
>>54479100
Added placeholder Cocoa event handling code


>>54480863
>JIRA
Fuck that jazz. We use it at work, it's better than nothing, but it could be so much better. We half-jokingly talk about rolling our own OSS issue tracker.
>>
>One day I will learn to symlink properly.

One day...
>>
>>54481835
confirmed for never having worked on a project for an actual business with other developers.
>>
>>54479905
Some projects designate the tools you are supposed to use, especially e.g. company projects.

Probably not IDE-specific, but lots of secondary linting and testing stuff, for example.
>>
>>54487827
ain't it
ln -s <source> <destination>
?
>>
>>54479136
>git = Github
Fuck off and kill yourself.
>>
misc.c: fork & execv in webSearch() instead of calling system().
>>
>>54488856
>calling system()
jesus christ how horrifying
>>
Triangulated terrain. Finally. Also played a little with materials, probs wants redoing. Physics point moved into Util point. Util geometry cleaned up some. Created ArrayToys. Created PointSets (digitised valuemaps, I guess).
>>
>>54488219
I think it's the other way around
>>
>>54488870
Yeah, I know.
The code that called system() was pretty old and I didn't know any better.
It was only recently I remembered it and changed it.
>>
A few routing fixes


I've been trying to make my tiny web framework more me friendly and all of the fun stuff I add always ends up having more caveats than I initially thought. That's just kind of a given when you're using a scripting language though
>>
Add wmutils-core.
>>
>>54479136

This is the average poster on here and the same essence of the post can be translated to basically every topic. Opinions like this circulate around here and elsewhere on the internet.
>>
>>54488880
Anon, those should probably have been different commits.
>>
Bump version
>>
>>54491746
Not him, but I just write code and commit what I did at the end of the day.
Is this wrong? should I commit for every logical change?
>>
>>54491865
yes
>>
>>54491541
>This is the average poster on here
NO! IMPOSSIBLE! DELETE THIS
>>
>>
>>54479100
>Fixed job file reading and associated tests

Heh.
>>
>>54479100
Undefined

>i dont have git atm
>>
>>54488880
Besides the fact that these could have been different commits it's best practice to have a 70 character line as your first commit line, summing up all then changes, and then jump a line and go into more details about what you did.

>>54479640,>>54479935 and >>54479167 are extremely good examples.
>>
>`Utils` now backups during `replace`

>>54479525
Oh kek.
>>
>>54491905
>testing2
wew, got some great naming conventions
>>
>>54491865
Yes, think of it as a kind of project-wide undo. Also, what if you discover you really fucked up one thing that day and want to revert it, but the rest is fine? It's much easier to roll back a single commit for a single feature than try to pick out the individual changes you made.
>>
>>54492250
Git newb here, how do you revert a commit that's not the latest one, but want to preserve later changes?
>>
>>54492310
man git-revert

You can also manually patch using
git diff
or even rebase depending on exactly how and what you want to revert or erase.
>>
File: 1462203652548.jpg (34 KB, 338x305) Image search: [Google]
1462203652548.jpg
34 KB, 338x305
>all these people putting commit messages in past tense
>>
>>54492621
I mix it up just to annoy people
>>
>>54492924
>damage controlling this hard
>>
>>54493049
>damage controlling on an anonymous discussion medium
Why would anyone do this?
>>
>>54493072
>n-n-no one damage controls on 4chan
I must say, this is quite a unique damage control strategy.
>>
>>54493557
But I want to know your opinion, man.
>>
>>54493049
>>54493557
Well, it's obviously working
>>
.
>>
>>54479100
stuff
>>
File: 1462326229943.png (825 KB, 700x700) Image search: [Google]
1462326229943.png
825 KB, 700x700
>add "bug report" and "bug log" links to staff links page
real 1337 shit boys
>>
gitignore für den Visualiser hinzugefügt
>>
Add DNS models and views
>>
Continue working on the Polish readme
Thread replies: 124
Thread images: 5

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

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.
If a post contains personal/copyrighted/illegal content you can contact me at [email protected] with that post and thread number and it will be removed as soon as possible.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com, send takedown notices to them.
This is a 4chan archive - all of the content originated from them. If you need IP information for a Poster - you need to contact them. This website shows only archived content.